*{
    margin: 0%;
    padding: 0%; 
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    color: white;
    text-decoration: none;
}

header{
    widht: 100%;
    height: 100vh;
    background-image:linear-gradient(rgba(0,0,0,0.3),rgba(0,0,0,0.1)), url('car2.png');
    background-repeat: no-repeat;
    background-size: cover;
}

nav{
    width: 100%;
    height: 15vh;
    background: rgba(0,0,0,0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: uppercase;
}

nav .logo{
    text-align: center;
    width: 25%;
}

nav .menu{
    text-align: center;
    display: flex;
    justify-content: space-around;
    width: 40%;
   
}

nav .menu a:first-child{
    color: #00b894;
}
main{
    width: 100%;
    height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/*section h3{
    font-size: 35px;
    font-weight: 200;
    letter-spacing: 3px;
    text-shadow: 1px 1px 2px black;
}*/

section a{
    padding: 12px 30px;
    border-radius: 4px;
    outline: none;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.5s ease;

}

section .btone{
    background: #fff;
    color: black;
}

section .bttwo{
    background: #00b894;
    color: white;
}

.btone:hover{
    background: #00b894;
    color: white;
}

.bttwo:hover{
    background: #fff;
    color: black;
}