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

body {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    background-color: #061c35;
}

.terminal {
    height: 100%;
    width: 80%;
    border-radius: 12px;
    top: 11vh;
    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-color: rgba(50, 70, 100, 0.5);
    color: #ffffff;
    /* Change text color on hover to white */
    transform: translateY(-5px);
   
    /* Move the entire anchor element upward slightly on hover */
}

.navbar {
    /* background-color: rgba(34, 107, 70, 0.7); */
    /* background-color: #1d5b6b; */
    background-color: #061c35;
    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;
    cursor: pointer;

}

.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.4em;
    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: rgb(246, 49, 4);
    padding: 10px 0;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
    /* Combine transitions */
}

.nav-links li:hover {
    /* background-color: rgb(120, 197, 197); */
    color: rgb(9, 77, 167);
    color: #ffffff;
    /* border-radius: 10px; */
    padding-bottom: 20px;
    border-bottom: 2px solid #fff;
    transform: translateY(-7px);
    font-size: 1.5em;
}

@media only screen and (max-width: 700px) {


    .nav-links li {
        display: none;
    }

    .navbar {
        justify-content: center;
        gap: 50px;
    }

    .nav-links::after {
        display: none;
    }

    
    .hamburger {
        width: 50px;
        display: flex;
        position: absolute;
        right: 10vw;
    }

    .hamburger img {
        margin: auto 0;
        width: 100%;
    }

    .cross {
        width: 50px;
        display: flex;
        position: absolute;
        right: 10vw;
    }

    .cross img {
        margin: auto 0;
        width: 100%;
    }

    .cross {
        position: absolute;
        right: 10vw;
    }



}

.container{
    margin-top: 20px;
    display: flex;
    justify-content: center;
    /* width: 30vw; */
    min-width: 30vw;
    height: 80vh;
    background-color: #061c35;
    flex-direction: column;
}
@media only screen and (max-width:550px) {
    
    .container image{
        width: fit-content;
        height: fit-content;
    }
}
    .image{
        size: auto;
    }
    .image img{
    /* background-image: url('media/quiz3.png'); */
    /* margin-left: -60px; */
    max-width: 120%;
    height: 40vh;
    /* background-size: cover; */
    /* background-position: center center; */
}


.container .h1{
    color: white;
    text-align: center;
    /* font-weight: 1; */
    margin-top: 20px;
    font-size: 40px;
}
.container .h3{
    color: white;
    text-align: center;
    /* font-weight: 1; */
    margin-top: 20px;
    font-size: 20px;
}
.container .h2{
    color: white;
    text-align: center;
    /* font-weight: 1; */
    margin-top: 20px;
    font-size: 25px;
}
.container button{
    background-color: rgb(184, 80, 80);
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: large;
    margin-left: 10px;
    
}
.button{
    margin: 25px auto;
    padding: 15px;
    width: 40%;
    text-align: center;
    background-color: gray;
    color: black;
    font-weight: bold;
    border-radius: 20px;
    font-size: large;
    cursor: pointer;
    position: relative;
    transition: 0.3s ease-in;
}
.button:hover{
    transform: translateY(-8px);
    width: 60%;
    color: white;
    background-color: red;
}
.button a{
    text-decoration: none;
}
