body {
    margin: 0;
    background: #eee;
    height: auto;
}

h1 {
    font-weight: 400;
    font-size: 2.5rem;
    text-transform: uppercase;
    margin: 0;
    color: #eeeeee;
}

h3 {
    font-weight: 400;
    font-size: 1.2rem;
    text-transform: capitalize;
    margin: 0;
    color: #eeeeee;
}

main {
    max-width: 900px;
    margin: 0 auto;
}

.landing-page {
    display: flex;
    height: 100vh;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: url("../img/hero/h1_hero.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.landing-text-inner {
    background: rgba(0, 0, 0, 0.6);
    padding: 5rem 3rem;
    color: #fff;
    display: block;
    width: 75%
}

.btn {
    text-decoration: none;
    color: #fff;
    border: 1px solid #eeeeee;
    padding: 1rem 3rem;
    display: inline-block;
    margin: 2rem 0 0;
    border-radius: 50px;
    transition: all 700ms ease-out;
}