* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    font-family: 'Noto Sans', sans-serif;
}



body {
    background-image: linear-gradient(rgba(0,0,0,0.3),rgba(0,0,0,0.2)),url("../Images/ll.jpg");
    background-size:cover;
    background-repeat: no-repeat;
    
    
}
   img {
    width: 100%;
}
header {
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    background: #0b2239;
    position: sticky;
    top: 0;
    bottom: 5px;
    box-shadow: 0 10px 10px 0 black;
    z-index: 10;

   
}
header .header-left {
    width: 100%;
    /* border: 2px solid yellow; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-right: 20px;
    
}
header .header-left .logo {
    /* border: 2px solid blue; */
    width: 180px;
    padding-right: 10px;
}
header .header-left nav {
    margin-left: 50px;
}
header .header-left nav ul {
    display: flex;
}
nav ul li a {
    display: block;
    color: #cfd9e0;
    font-size: 23px;
    padding: 5px 10px;
    transition: 0.2s;
    margin:0 10px;
    border-radius: 5px;
}
nav ul li {
    margin: 0 5px;
    transition: all .3s ease-in-out .1s;
}
.logo a img {
    margin: 0 5px;
    transition: all .3s ease-in-out .1s;
}
.logo a img:hover{
    transform: scale(1.1);
}
nav ul li:hover{
    
    transform: scale(1.1);
 
 }
nav ul li a:hover{
    background: #1b9bff;
    transition: .5s;
    color: black;
}


header .header-right {
    display: flex;
    align-items: center;
}

header .header-right .hamburger {
    margin-left: 20px;
    cursor: pointer;
    display: none;
}
header .header-right .hamburger div {
    width: 30px;
    height: 5px;
    margin: 7px 0;
    background: #fff;
}

   



.wlmDiv{
    margin-top: 15px;
    width: 100%; height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
   
    background-image: url(../Images/Screenshot\ 2023-02-20\ 182638.png);
    background-size: cover;
}




.text{
    font-weight: normal;
    font-size: 35px;
    border-right: 2px solid white;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    animation:
    typing 3s steps(25),
    cursor .4s step-end infinite alternate;
}
@keyframes cursor {
    50%{border-color: transparent;}
    
}

@keyframes typing {
    from{
        width: 0;
    }
   
    
}

.container {
    width: 100%;
    height: 66vh;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
   
   
    


}






.samester {
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 20px 30px;
    width: 420px;
    height: 300px;
    text-align: center;
    border-radius: 20px;
    border: 2px solid rgb(0, 0, 0);
    box-shadow: 10px 10px 20px 0 rgba(243, 241, 241, 0.832);
    background: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5));
    transition: all .3s ease-in-out .1s;
}
.samester:hover{
   transform: scale(1.1);

}

.samester a:hover {
    background: #1b9bff;
    color: black;
}

.samester a {
    color: white;
    border-radius: 3px;
    font-size: 30px;
    padding: 5px 10px;
    font-weight: normal;
}




footer{
    width: 100%;
    
    background-image: url(../Images/Screenshot\ 2023-02-20\ 182638.png);
    background-size: cover;
    position: sticky;
    margin-top: 22px;
    bottom: 0;
}

.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    
}
.imgFooter{
    display: flex;
    
}
.imgFooter a{
    margin: 5px 15px;
}

.imgFooter a:hover {
    background: none;

}

.divShare {
   
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(0, 0, 0);
    text-align: center;
    font-size: 25px;
    font-weight: normal;
    margin-right: 20px;

}
.divShare h5{
    font-weight: normal;
}

@media only screen and (max-width: 1000px) {
    body{
        background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.2)), url("../Images/libMobile.jpg")
    }
    

    nav ul li a {
        
        font-size: 23px;
        padding: 5px 10px;
        transition: 0.2s;
        margin:10px 10px;
        border-radius: 5px;
    }
    nav ul li:hover{
    
        transform: scale(1.1);
     
     }
    nav ul li a:hover{
        background: #0b2239;
        transition: .5s;
        color: #1b9bff;
    }
    
    header .header-right{
        padding-right:30px;
    }
    header .header-right .hamburger {
        display: block;
    }
    header .header-left{
        margin-left: 0;
       
        
    }
    header .header-left nav {
        margin: 0;
        position: fixed;
        top: -100%;
        left: 0;
        width: 100%;
        height: fit-content;
        background-color: #0b2239;
        padding: 20px;
        transition: 0.5s;
        text-align: center;
        z-index: 2;
    }
    header .header-left nav.active {
       
        top: 80px;
    }
    header .header-left nav ul {
        display: block;
    }

    .wlmDiv{
        height: 5vh;
       }
   
    .text{
        font-size: 25px;
        
        font-weight: normal;
    }
    
 .samester {
     
    
    width: 420px;
    height: 250px;
    transition: all .3s ease-in-out .1s;
    

}
.samester:hover{
    
    transform: scale(1.1);
 
 }
.samester a {
   
    font-size: 25px;
    font-weight: normal;
}


}

@media only screen and (max-width: 500px) {
    .divShare{
        font-size: 18px;
    font-weight: normal;

    }
    
    }







@media (max-width:300px)
{
   .wlmDiv{
    height: 5vh;
   }
    .text{
        font-size: 25px;
        
        font-weight: normal;
    }
    

    .samester {
        
       
        width: 320px;
        height: 250px;
        
    
    }
    .samester a {
       
        font-size: 20px;
        font-weight: normal;
    }
    .share{
        
        font-size: 13px;
    }
    .divShare{
        margin-right: 5px;
    }
    .imgFooter img{
        width: 40px;
        
    }
    .imgFooter a{
        margin-right: 1px;
    }
    
    
   
   
}




