html,
body {
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #555;
    font-family: 'Lato', 'Arial', sans-serif;
    font-weight: 300;
    font-size: 16px;
    text-rendering: optimizeLegibility;
}

body.landing {
    overflow-y: hidden;
}

h1,
h2,
h3 {
    font-weight: 300;
    text-transform: uppercase;
}

h1 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #fff;
    font-size: 180%;
    word-spacing: 4px;
    letter-spacing: 1px;
}

h2 {
    font-size: 150%;
    word-spacing: 2px;
    text-align: center;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.hero-text {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    padding: 0 7.5% 7.5vh;
    width: auto;
    box-sizing: border-box;
    flex-direction: column;
    justify-content: flex-end;
}

.hero-text-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 2vh;
}

.hero-text-box h1 {
    font-size: 60px;
}

.hero-text-box h2,
.hero-text-box h3,
.hero-text-box p {
    text-align: center;
    color: rgb(254, 254, 254);
    text-transform: none;
    font-weight: 300;
}

.hero-text-box h2 {
    font-size: 180%;
    margin-bottom: 1.2em;
    margin-top: 0;
    text-shadow: 2px 2px 5px #152c2e80;
    line-height: 1.2em;
}

.hero-text-box h2:first-of-type {
    margin-bottom: 0.4em;
}

.hero-text-box h2:after {
    width: 0;
    margin: 0;
}

.hero-text-box .links {
    display: flex;
    width: 80%;
    justify-content: space-evenly;
    text-align: center;
}

.btn-hero {
    font-size: 20px;
    font-weight: 300;
    padding: 10px 30px;
    background-color: #152c2ebf;
    border: 2px solid #ffffff9d;
    text-transform: uppercase;
    border-radius: 30px;
    min-width: 200px;
}

.btn-hero:link,
.btn-hero:visited {
    text-decoration: none;
    color: #fff;
}

.btn-hero:hover,
.btn-hero:active {
    color: #F08B4F;
    border-color: #F08B4F;
    font-weight: 400;
    background-color: #152c2ee6;
}

@media (max-width: 736px) {
    .hero-text {
        padding: 0 5% 5svh;
    }

    .hero-text-box {
        padding-bottom: 1vh;
    }

    .hero-text-box h2 {
        font-size: 120%;
        font-weight: 400;
        line-height: 1.15;
        margin-bottom: 0.8em;
    }

    .hero-text-box h2:first-of-type {
        margin-bottom: 0.25em;
    }

    .hero-text-box .links {
        width: 100%;
    }

    .btn-hero {
        font-size: 100%;
        min-width: 130px;
        padding: 8px 14px;
    }
}

@media (min-width: 768px) {
    body {
        font-size: 18px;
    }
}

@media (min-width: 992px) {
    body {
        font-size: 20px;
    }
}
