@import url('https://fonts.googleapis.com/css2?family=Otomanopee+One&display=swap');
*{
    margin: 0;
    padding: 0;
    
    scroll-behavior: smooth;
}
header{
    min-height: 100vh;
    width: 100%;
    background-image: url(img/header-bg.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
    font-family: 'Otomanopee One', sans-serif;
   
}
nav{
    background-color: rgba(31, 30, 30, 0.651);
    
    
}

nav li a:hover{
    color: goldenrod !important;
}
.text-box{
    width: 90%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
     
}
.text-box h1{
    font-size: 80px  !important;
}

.hero-btn{
    display: inline-block;
    text-decoration: none;
    color:rgb(32, 218, 131);
    border:1px solid #fff ;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
}
.hero-btn:hover{
    border: 1px solid #f44336;
    background:#f44336;
    transition: 1s;
    color: honeydew;
}
.layer{
    background: transparent;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;

}
.layer:hover{
    
    background: rgba(226, 0, 0, 0.445);
}
.layer h3{
    width: 100%;
    font-weight: 500;
    color: #fff;
    font-size: 26px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    opacity: 0;
    transition: 0.5s;
}
.layer:hover h3{
    bottom: 49%;
    opacity: 1;
}
.icon-footer{
    
   color: black;
    


}
.icon-footer a{
    margin: 10px;
    border-radius: 50%;
}
.icon-footer a:hover{
    box-shadow: 0 0 40px tomato;
}
#contact{
    min-height: 70vh;
    width: 100%;
    background-image: url(img/photo-1526778548025-fa2f459cd5c1.jpeg);
    background-position: center;
    background-size: cover;
    position: relative;
}

@media(max-width: 700px){
    .text-box h1{
        font-size: 50px !important;
    }
    .navbar 
    {  
        background-color:#212529;
    }
    .top{
        text-align: center;
    }
    #contact{
        min-height: 100vh;
    }
    footer{
        text-align: center;
    }

}