*{
    margin:0;
    padding:0;
    list-style:none;
    box-sizing:border-box;
    font-family:"Poppins", sans-serif;
}

body{
    width:100%;
    height:100vh;
    overflow:hidden;
    background:#001e4d;
}

.app{
    width:90%;
    max-width:600px;
    background:#fff;
    padding:30px;
    margin:200px auto 0;
    border-radius:10px;
}

.app h1{
    font-size:25px;
    font-weight:600;
    color:#001e4d;
    border-bottom:1px solid #333;
    padding-bottom:30px;
}

.quiz{
    padding:20px 0px;
}

.quiz h2{
    font-size:18px;
    color:#001e4d;
    font-weight:600;
}

.btn{
    display:block;
    font-weight:500;
    width:100%;
    background:#fff;
    text-align:left;
    outline:none;
    border:1px solid #222;
    margin:10px 0;
    padding:10px;
    border-radius:4px;
    cursor:pointer;
}

.btn:disabled{
    cursor:no-drop;
}

.btn:hover:not([disabled]){
    background:#222;
    color:#fff;
    transition:all linear 300ms;
}

#next_btn{
    width:150px;
    font-weight:500;
    background:#001e4d;
    color:#fff;
    border:none;
    outline:none;
    padding:10px;
    margin:20px auto 0;
    border-radius:4px;
    cursor:pointer;
    display:none;
}

.correct{
    background:#9aeabc;
    color:#fff;
}
.correct:hover{
    background:#9aeabc;
    color:#fff;
}
.incorrect{
    background:#ff9393;
    color:#fff;
}
.incorrect:hover{
    background:#ff9393;
    color:#fff;
}