*{
    box-sizing: border-box;
    scroll-behavior: smooth;
}


body{
    margin: 0;
    background-color: #212121;
}

section{
    padding-left: 10vw;
    padding-right: 10vw;
    padding-top: 10vh;
}


h1{
    color: #fff;
    font-size: 4rem;
    margin: 0;
    font-family: 'Ribeye', cursive;
    font-weight: 100;
}
h2{
    font-family: 'Heebo', sans-serif;
    color: #fff;
    font-size: 1.5rem;
    margin: 0;
    font-weight: 200;
}
h3{
    color: #fff;
    font-size: 1.5rem;
    margin: 0;
    font-family: 'Heebo', sans-serif;
    font-weight: 200;
}
h4{
    color: #fff;
    font-size: 1rem;
    margin: 0;
    font-family: 'Heebo', sans-serif;
    font-weight: 300
}
h5{
    color: #fff;
    font-size: 3vw;
    margin: 0;
    font-family: 'Heebo', sans-serif;
}
p{
    color: #fff;
    font-size: 1rem;
    margin: 0;
    font-family: 'Heebo', sans-serif;
    font-weight: 200;
}

a{
    text-decoration: none;
}



header{
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1;
    background-color: rgba(0, 0, 0, .7);
    box-shadow: 0 0.1rem .8rem #000;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 1vh;
}

nav a{
    display: flex;
    padding-left: 2vw;
    display: inline-block;
}
nav{
    margin: 0;
}

/*hero*/
#hero{
    height: 110vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#hero img{
    opacity: 0.4;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 110%;
    z-index: -1;
}

#hero h1{
    margin-bottom: 5vh;
}


#heroText{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 15vh;
}


#heroText a{
    margin-top: 5vh;
}

.button{
    background-color: rgba(255, 255, 255, 0.9);
    padding: 1rem;
    color: #212121;
    border-radius: 1rem;
    font-size: 1.5rem;
    font-family: 'Heebo', sans-serif;
}

.button:hover{
    background-color: rgba(33, 33, 33, .7);
    color: white;
}

#heroText h3:nth-child(3){
    padding-top: 1rem;
    border-top: #fff 1px solid;
}
#heroText h3:nth-child(2){
    padding-bottom: 1rem;
}
/*hero*/
/*menu*/
#menu{
    flex-direction: column;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 1rem;
}


#menu img{
    height: 75%;
    width: 75%;
}
.menuCont{
    flex-direction: column;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 1rem;
}
/*menu*/
/*about*/

#about{
    margin-top: 10rem;
    position: relative;
    text-align: center;
}
#aboutBg{
    position: absolute;
    opacity: 0.2;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
#about h1{
    justify-content: center;
    text-align: center;
}
#aboutCont{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5vh;
    padding-top: 5vh;
    padding-bottom: 5vh;
}

#aboutCont img{
    width: 100%;
    height: 100%;
    box-shadow: 3px 3px 30px 3px black;
}

#aboutItem1, #aboutItem2{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 5vh;
    padding-bottom: 5vh;
    border-bottom: 1px white solid;
}

/*contact*/

#contact h1{
    text-align: center;
    padding-bottom: 5vh;
}

#contactInfo{
    padding-bottom: 5vh;
}

#contact h3{
    font-size: 1.2rem;
    text-align: center;
}
#emailBtn{
    display: flex;
    justify-content: center;
    padding-bottom: 5vh;
}
#emailBtn a {
    font-size: 1.6rem;
}
#contact p{
    padding-top: 10vh;
    padding-bottom: 2vh;
    text-align: center;
}

#contact h3{
    text-align: center;
}



@media only screen and (min-width: 1100px){
    h1{
        color: #fff;
        font-size: 8rem;
        margin: 0;
    }
    h2{
        color: #fff;
        font-size: 4vw;
        margin: 0;
    }
    h3{
        color: #fff;
        font-size: 2rem;
        margin: 0
    }
    h4{
        color: #fff;
        font-size: 2rem;
        margin: 0;
    }
    h5{
        color: #fff;
        font-size: 1.5vw;
        margin: 0;
    }
    p{
        color: #fff;
        font-size: 1.5vw;
        margin: 0;
    }
    #hero{
        background-size: cover;
    }
    #heroText{
        margin-bottom: 0;
    }
    #menu img{
        height: 50%;
        width: 50%;
    }
    .menuCont{
        flex-direction: row;
    }
    #aboutCont img{
        width: 30vw;
        height: 50vh;
    }
    #aboutCont {
        flex-direction: row;
    }
    #contact h3{
        font-size: 3rem;
        text-align: center;
    }
    #emailBtn a {
        font-size: 3rem;
    }
}
