@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
}

body {
    background-color: rgb(31, 25, 119);
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    height: max-content;
    width: 600px;
    border-radius: 10px;
    background-color: white;
    font-family: "poppins";
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.container h2{
    color: rgb(9, 9, 80);
}

.container .ques-ans {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    gap: 20px;
}

.ques-ans p {
    color: rgb(11, 11, 68);
    font-weight: 500;
}

.ques-ans li {
    list-style: none;
    color: rgb(8, 8, 65);
    font-weight: 500;
    border: 1px solid black;
    padding: 5px;
    border-radius: 5px;
    cursor: pointer;
}

.ques-ans li:hover{
    background-color: gray;
}

.container button{
    font-family: "poppins";
    font-size: 1rem;
    font-weight: 500;
    color: white;
    background-color: rgb(6, 6, 90);
    border: none;
    width: max-content;
    margin: auto;
    padding: 5px 15px;
    border-radius: 5px;
    
}

.correct{
    background-color: #9aeabc;
}

.wrong{
    background-color: #ff9393;
}

.container .hide{
    display: none;
}
.summary{
    color: rgb(12, 12, 80);
    font-weight: 500;
    font-size: 20px;
}