*{
    padding:0;
    margin:0;
    box-sizing: border-box;

}
header{
    background-color: #000000;
    opacity: 80%;
    position: fixed;
    width: 100%;
    filter: drop-shadow(10px);
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    
}


li{
    list-style: none;

}
a{
    color:rgb(255, 255, 255);
    text-decoration:none;
    

}
.navbar{
    min-height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;

}
.nav-menu{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap:60px ;

}
.branding{
    font-size:2rem;   
     
}
.nav-link{
    transition: 0.7s ease;
}
.nav-link:hover{
    color:dodgerblue;

}
.hamburger{
    display:none;
    cursor:pointer;

}
.bar{
    display:block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: rgb(255, 255, 255);
    
}

body{
    background-image:url(/IMG-20241104-WA0010.jpg);
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
}
.container{
    width: 100%;
    height:100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
h1{
    color:#e5d8d8;
    font-size: 50px;
    margin-top:300px;
    margin-bottom:500px;
    text-align: center;
}
h2{
    background-color: #000000;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    
    color:#e5d8d8;
    
}
.logo img {
    width: 200px;
}


@media(max-width:1000px){
    .hamburger{
        display: block;
    }
    .hamburger.active .bar:nth-child(2){
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(1){
        transform: translateY(8px)rotate(45deg);        
    }
    .hamburger.active .bar:nth-child(3){
        transform: translateY(-8px)rotate(-45deg);
    }
    .nav-menu{
        position: fixed;
        left: -100%;
        top:70px;
        gap:0;
        flex-direction: column;
        background-color: #000000;
        opacity: 80%;
        width:100%;
        text-align:center;
        transition: 0.3s;

    }
    .nav-item{
        margin: 16px 0;

    }
    .nav-menu.active{
        left: 0;
    }

}


   