
  *{
    margin: 0;
    padding: 0;
    font-family: 'poppins',sans-serif;
    box-sizing: border-box;
}

body{
    background:#0A1F44;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}


.app{
    background:#FFFFFF;
    min-height: 525px;
    width:50% auto;
    margin: auto; 
    border-radius: 10px;
    padding:50px 30px 30px 30px;
    position: relative;
    text-align: left;
}

.btn{
    display: flex;
    justify-content: center;
    margin-top:20px;
}
#next-btn{
    padding:10px 20px;
    width: 190px;
    background-color: darkmagenta;
    color: #FFFFFF;
    margin-left: 2em;
    text-align: center;
}
#next-btn:hover {
    background: darkblue;
}
#back-btn{
    padding:10px 20px;
    width: 190px;
    background-color: darkmagenta;
    color: #FFFFFF;
    text-align: center;
}
#back-btn:hover {
    background: darkblue;
}

h1{
    color:#c20078 ;
    text-align: center;
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 10px;
}

.quiz{
    padding: 20px 0;
    margin-top: 10px;
    
}

.quiz h2{
   font-size: 28px; 
   color: rgb(10, 6, 1);
   font-weight: 600;
}

button{
    font-size: 24px;
    background: #FFFFFF;
    color: #150404;
    width: 99%;
    padding: 10px;
    border: 1px solid #333;
    margin:10px 0 ;
    cursor: pointer;
    text-align: left;
    border-radius: 4px;
    transition:  0.3s;
    margin-top: 20px;
}

button:hover{
    background-color: #0A1F44;
    color: white;


}
.button-row{ 
    cursor: pointer;
    display: flex;
    justify-content: center;  
    margin-top: 20px; 
}

.correct{
    background: hwb(108 61% 11%);
    
}
.incorrect{
    background: rgb(232, 86, 86);
}  

