* {
    padding: 0;
    margin: 0;
}

body {
    color: white;
    font-family: "new-atten", sans-serif;
}

#hero {
    background-image: url(/assets/Maverick\ BG.png);
    box-shadow: inset 0 0 0 1000px rgba(0,0,0,0.74);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    text-align: center;
    text-transform: uppercase;
    justify-content: center;
}

.hero-wrapper {
    height: 100vh;
    width: calc(100% - 70px);
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-transform: uppercase;
    justify-content: center;
}

.hero-wrapper img {
    max-width: 100%;
    width: auto;
}

h1 {
    display: none;
}

.subtext {
    margin-top: 62.2px;
    font-size: 22px;
    letter-spacing: 9.6px;
    opacity: 0.46;
}

.hero-email {
    position: absolute;
    bottom: 80px;
}

a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    letter-spacing: 9.6px;
}

a:hover {
    text-decoration: underline;
    font-size: 18px;
}

@media only screen and (max-width: 768px){
    .subtext {
        font-size: 18px;
    }
    a {
        font-size: 14px;
    }
    a:hover {
        font-size: 16px;
    }
}