*{margin: 0 ;
 padding: 0 ;
 box-sizing: border-box;
}

body{
    font-family: Arial, Helvetica, sans-serif;
    
    
}


img{
    width: 100vw;
    object-fit: contain;
}


video{ 
    width: 100vw;
    object-fit: contain;
    margin: 0 ;
    padding: 0px ;
    

}





#lalink{
    width: 2vw;
    object-fit: cover;
    text-decoration: none;
}

main{
    position: absolute;
}


nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 8vh;
    background-color: rgb(19, 19, 19);
    font-family: 'Poppins', sans-serif;
    position: fixed;
    width: 100vw;
    z-index: 1;
    
}

h4.logo{
    font-size: 1.5rem;
}

.logo{
    color: rgb(231, 231, 231);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-left: 20px;
}

.nav-links{
    display: flex;
    justify-content: space-around;
    width: 30%;
    margin-right: 20px;

}

.nav-links li{
    list-style: none;
}

a{
    text-decoration: none;
    color: rgb(231, 231, 231);
}


.nav-links a{
    color: rgb(231, 231, 231);
    text-decoration: none;

}

.burger{
    display: none;
    cursor: pointer;
    margin-right: 20px;
}

.burger div{
    width: 25px;
    height: 3px;
    background-color: rgb(231, 231, 231);
    margin: 5px;
    transition: all 0.3s ease;
}


@media screen and (max-width:1024px)
{
    .nav-links{
        width: 60%;
        margin-right: 0px;
    }
}

@media screen and (max-width:768px){
    body{
        overflow: hidden;
    }

  


    .nav-links{
        
        position: absolute;
        right: 0px;
        height: 98vh;
        top: 8vh;
        background-color: rgb(19, 19, 19);
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 50%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
    }


    .nav-links li{
        opacity: 0;
    }

    .burger{
        display: block;
        
    }
  
}


.nav-active{
    transform: translateX(0%);
}

@keyframes navLinkFade{
    from {
        opacity: 0;
        transform: translateX( 50px);
    }
    to {
        opacity: 1;
        transform: translateX( 0px);
    }
}

.toggle .line1{
    transform: rotate(-45deg) translate(-5px ,6px);
}

.toggle .line2{
    opacity: 0;
}

.toggle .line3{
    transform: rotate(45deg) translate(-5px ,-6px);
}

