*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}
body{
    background-color: aqua;
}
.app{
    background-color: white;
    width: 35%;
    max-width: 500;
    border-radius: 10px;
    padding: 30px;
    position: relative;
    margin: auto;
    height: 75%;
    margin-top: 5%;
}
.app h1{
    font-size: 25px;
    color: #001e4d;
    font-weight: 600;
    border-bottom: 2px solid #0a0a0a;
    padding-bottom: 30px;
}
form{
    padding: 20px 0;
}
.ques{
    color: darkblue;
    background: transparent;
    border: none; 
    width: 100%;
    text-align: left;
    font-size: 15px;
    font-weight: bold;
    padding: 10px;
    margin-bottom: 10px;
}
.btn{
    width: 100%;
    text-align: left;
    cursor: pointer;
    padding: 10px;
    background-color: white;
    border: 1px solid black;
    color: black;
    font-weight: 500;
    margin: 10px 0;
    border-radius: 4px;
}
.btn:hover{
    color: white;
    background-color: black;
}
.next{
    background-color: white;
    width: 100%;
    font-weight: bold;
    font-size: 20px;
    background-color: orange;
    color: white;
    border: 1px solid black;
    padding: 10px;
    margin: 10px auto 0;
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    cursor: pointer;
}
input[name="show"]{
    width: 20px;
    padding: 5px;
    margin-bottom: 10px;
}
input[class="right"]{
    border-radius: 4px;
    border: solid black 1px;
    width: max-content;
    /* display: none; */
}
.correct{
    background-color: green;
}
.wrong{
    background-color: red;
}
input[name="show"]{
    width: 20px;
    background-color: transparent;
    border: none;
    font-weight: bold;
    font-size: 20px;
}
input[name="total"]{
    width: 20px;
    background-color: transparent;
    border: none;
    font-size: 20px;
    font-weight: bold;
}