@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200&display=swap');

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

body {
    font-family: 'Poppins', sans-serif !important;
    box-sizing: border-box;
    width: 100vw;
}

.terminal {
    height: 100%;
    width: 80%;
    border-radius: 12px;
    top: 12vh;
    z-index: 100;
    left: -100%;
    display: none;
    list-style: none;
    position: fixed;
    flex-direction: column;
    height: 100%;
    background-color: rgb(36, 33, 33);
    color: white;
    font-size: 1.1rem;
}

.terminal li {
    margin: 0;
    font-size: 1.4em;
    transition: transform 0.3s ease, color 0.3s ease, background-color 0.3s ease;
    padding-top: 10px;
}

.terminal a {
    text-decoration: none;
    margin: 15px 30px 0 0;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
    /* Combine transitions */
}

.terminal li:hover {
    background:transparent;
    color: #ffffff;
    border-bottom: 2px solid black;
    /* Change text color on hover to white */
    transform: translateY(-7px);
    /* Move the entire anchor element upward slightly on hover */
}

.navbar {
   
    /* background-color: rgb(142, 230, 210); */
    /* background-color: rgb(75, 207, 207); */
    background-color: rgb(7, 70, 119);
    z-index: 10;
    width: 100vw;
    height: 10vh;
    position: fixed;
    top: 0;
    display: flex;
    justify-content: space-between;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar .logo {
    height: 100%;
    margin-top: 10px;
   
    
}

.logo img {
    margin-left: 10vw;
    height: 90%;
    border-radius: 10px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    margin-right: 10vw;
}

.nav-links li {
    margin: 0;
    font-size: 1.2em;
    transition: transform 0.3s ease, color 0.3s ease, background-color 0.3s ease;
    padding-top: 10px;
    transition: 0.5s ease;
    padding-left: 20px;

}

.nav-links a {
    text-decoration: none;
    margin: 15px 30px 0 0;
    color: yellow;
    padding: 10px 0;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
    /* Combine transitions */
}

.nav-links li:hover {
    background:rgba(1, 10, 17, 0.5);
    /* color: rgb(9, 77, 167); */
    color: #ffffff; 
    transform: translateY(-5px); 
    /* border-bottom: 4px solid #fff; */
}
.main{
    width: 90vw;
    height: auto;
    margin: 0 auto;
    background: white;
    display: flex;
    gap: 4vw;
}
.main .left{
    width: auto;
    height: auto;
    padding: 20px;
    background-color: rgb(251, 244, 244);
    margin-top: 15vh;
}
.main .left h2,
.main .right h2{
    color: green;
    text-align: center;
    font-weight: bolder;
    
    
}
.main .left p,
.main .right p{
    font-size: 1.1rem;
    font-weight: 990;
}
.main .right{
    width: auto;
    height: auto;
    padding: 20px;
    background-color: rgb(251, 244, 244);
    margin-top: 35vh;
}
.members{
    width: 90vw;
    margin: 20vh auto;

}
.members h1{
    text-align: center;
    font-weight: 5000 !important;
    font-size: 2rem;
    color: brown;
    background-color: rgb(230, 218, 218)
}
.we{
    padding-top: 10vh;
    height: auto;
    width: 100%;
   display: flex;
   flex-wrap: wrap;
   gap: 5vh;
   justify-content: space-around;
   background-color: rgb(245, 240, 240);
}
.m{
    width: 50vh;
    height: 55vh;
    
}
.show{
    width: 100%;
    height: 65%;
   
    
    border-radius: 100%;
}
.first .show{
     background-image: url("https://images.pexels.com/photos/356079/pexels-photo-356079.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1");
    background-repeat: no-repeat;
    background-size:cover;
}
.fifth .show{
     background-image: url("https://images.pexels.com/photos/356079/pexels-photo-356079.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1");
    background-repeat: no-repeat;
    background-size:cover;
}
.second .show{
     background-image: url("https://images.pexels.com/photos/356079/pexels-photo-356079.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1");
    background-repeat: no-repeat;
    background-size:cover;
}
.third .show{
     background-image: url("https://images.pexels.com/photos/356079/pexels-photo-356079.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1");
    background-repeat: no-repeat;
    background-size:cover;
}
.fourth .show{
     background-image: url("https://images.pexels.com/photos/356079/pexels-photo-356079.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1");
    background-repeat: no-repeat;
    background-size:cover;
}
.members .we .m h2{
    text-align: center;
    font-weight: bold;
    text-decoration: underline;
    padding-top: 10px;
    cursor: pointer;
}
@media screen and (max-width:700px) {
    .main{
        flex-direction: column;
        gap: 50px;
    }
}
.to_show{
    height: auto;
    width: auto;
    position: absolute;
    display: none;
}