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

body {
    background-color: #001e4d;
}

.head {
    font-size: 90px;
    height: auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 60px;
    gap: 25px;
    color: #019f55;
}
.wish{
  display: flex;
  justify-content: center;
  font-size: 30px;
  font-weight: 600;
}
.head span {
    font-size: 60px;
    color: rgba(255, 255, 255, 0.905);
}

.app {
    background-color: white;
    width: 600px;
    margin: 20px 30%;
    padding: 30px;
    border-radius: 12px;
}

.main {
    font-size: 25px;
    color: #001e4d;
    font-weight: 600;
    border-bottom: 1px solid #333;
    padding-bottom: 30px;
}

.quiz {
    padding: 20px 0;
}

.ques {
    font-size: 18px;
    color: #001e4d;
    font-weight: 600;
}
.result{
    display: flex;
    justify-content: center;
    font-size: 22px;
    padding-top: 20px;
}
.ansers>button {
    background-color: white;
    color: #222;
    font-weight: 500;
    border: 1px solid #222;
    padding: 10px;
    margin: 10px 0;
    border-radius: 4px;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s;
}

.ansers>button:hover:not([disabled]) {
    background-color: #222;
    color: #fff;
}
.ansers>button:disabled{
    cursor: no-drop;
}

#next {
    background-color: #001e4d;
    color: #fff;
    font-weight: 500;
    width: 150px;
    border: none;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 40px;
    margin-left: 35%;
    display: none;
}

@media only screen and (max-width:1030px) {
    .app {
        margin: 120px 20%;
    }
}

@media only screen and (max-width:770px) {
    .app {
        margin: 60px 12%;
    }
}

@media only screen and (max-width:430px) {
    .app {
        margin: 70px 4%;
        width: 400px;
    }

    #next {
        margin-left: 30%;
    }
    .head{
        font-size: 70px;
    }
    .head span {
    font-size: 45px;
}

}

@media only screen and (max-width:380px) {
    .app {
        margin: 70px 5%;
        width: 330px;
    }

    #next {
        margin-left: 24%;
    }
    .head{
        font-size: 50px;
    }
    .head span {
    font-size: 40px;
}
}

@media only screen and (max-width:325px) {
    .app {
        margin: 40px 4%;
        width: 300px;
    }

}

.correct {
    background-color: #9aeabc;
}

.incorrect {
    background-color: #ff9393;
}