*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 16px;
    text-decoration: none;
    list-style: none;
}

.quiz{
    background: #0d479a;
    padding: 30px;
}

.heading{
    margin: 10px auto 40px auto;
}

.heading .title{
    color: white;
    font-size: 30px;
    font-weight: 500;
    text-align: center;
}

.heading .sub-title{
    color: white;
    font-size: 20px;
    font-weight: 300;
    text-align: center;
    margin-top: 10px;
}

.result{
    text-align: center;
    margin: 20px auto;
    min-width: 350px;
    max-width: 400px;
    font-size: 20px;
    border-radius: 5px;
    background: white;
    box-shadow: rgba(0,0,0,0.24) 0px 3px 8px;
}

.result p:first-child{
    padding: 10px 20px;
}

.hide{
    display: none;
}

.reload button{
    background: #04AA6D;
    color: white;
    padding: 10px 20px; 
    border-radius: 0px 0px 5px 5px;
    width: 100%;
    border: 0px;
}

.reload button:hover{
    background: #03a369;
    cursor: pointer;
}

.quiz-form{
    max-width: 1000px;
    margin: auto;
}

.question{
    background: white;
    padding: 10px 20px;
    border-radius: 5px;
    margin: 20px 0;
    box-shadow: rgba(0,0,0,0.24) 0px 3px 8px;
}

.question > *{
    font-size: 18px;
}

.option{
    margin-left: 10px;
    padding: 5px 0;
}

.correct{
    background: #c8ffdf;
}

.incorrect{
    background: #ffd1d1;
}

.submit{
    text-align: center;
    margin: 30px 0;
}

.submit input{
    padding: 15px 20px;
    font-size: 25px;
    background: #04AA6D;
    cursor: pointer;
    color: white;
    border: none;
    border-radius: 5px;
}

.submit input:hover{
    background: #03a369;
}