.hero {
    background-image: url("../images/header.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size:auto;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
}


.logo{
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}



.logo > h1 {
    font-family: "Montserrat";
    font-size: 48px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 32px;
    text-align: center;
    color: white;
    animation: fadeIn 1s ease 0s 1 normal forwards;
}




@media (min-width: 768px) {
    .logo > h1 {
        font-size: 128px;
    }

}