
*{
    
    text-decoration: none;
    list-style: none;
}

body{
    font-family: 'Times New Roman', Times, serif;
    background-color: #081b29;
}


.lo{
    font-size: 22px;
}
.nav-links ul li a{
    transition: color 0.7s;
}

ul li a:hover{
    color:#00abf0;
    
}

header{
    height: 100vh;
    width: 100vw;
    background-position: center;
    
}

.navbar{
    position: absolute;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.navbar a{
    color: #fff;
}

.navbar .logo {
      font-size: 2em;
      font-weight: bold;
}

.navbar .nav-links ul{
    display: flex;

}

.navbar .nav-links ul li{
    margin: 0 20px;

} 

.navbar .nav-links ul li:hover{
    color: blue;
    

} 


.navbar .menu-hamburger{
    display: none;
    position: absolute;
    top: 50px;
    right: 45px;
    width: 35px;
}



.beka{
    color:white;
    background-image: linear-gradient(to right,blue,red);
}
.prachi{
    color: black;
    background-image: linear-gradient(to right,black,yellow);
}


@media screen and (max-width:900px) {
    
    
    


    .navbar .logo {
        position: absolute;
        top: 50px;
        left: 50px;
  }
    .navbar {
        padding: 0;
    }
   

    .navbar .menu-hamburger{
        display: block;
    }
   

    .nav-links{
        top: 0;
        left: 0;
        position: absolute;
        background-color: rgba(240, 230, 230, 0.164);
        backdrop-filter: blur(7px);
        width: 100%;
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left:-100%;
        transition: all 0.5s ease;
    }


    .nav-links.mobile-menu{
        margin-left: 0;
    }

    .nav-links ul{
        
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .navbar .nav-links ul li{
        margin: 25px 0;
        font-size: 22px;
    
} 
} 



    

