* {
    margin: 0;
    padding: 0;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    box-sizing: border-box;
}

body {
    background-color: #001e4d;
}

.quiz-container {
    background: white;
    width: 90%;
    max-width: 1000px;
    margin: 60px auto 0;
    border-radius: 10px;
    padding: 30px; 
}

.quiz-container h1 {
    font-size: 25px;
    border-bottom: 1px solid #333;
    padding-bottom: 30px;
}

.quiz {
    padding: 20px 0;
}

.quiz-container h2 {
    font-size: 20px;

}

.btn {
    background: white;
    color: #222;
    width: 100%;
    padding: 10px;
    border: 1px solid #222;
    margin: 10px 0;
    font-size: 18px;
    text-align: left;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.1s;
}

.btn:hover:not([disabled]) {
    background: #222;
    color: #fff;
}

.btn:disabled {
    cursor: no-drop;
}

#next-btn {
    background: #001e4d;
    color: #fff;
    font-size: 20px;
    border: 0;
    padding: 10px;
    border-radius: 4px;
    margin: 20px auto 0;
    cursor: pointer;
    display: none;
}

.correct {
    background: #9aeabc;
}

.incorrect {
    background-color: #ff9393;
}

.hide {
    display: none;
}

.metrics {
    display: flex;    
}

.quiz-progress {
    width: 50%;
    padding: 10px;
    align-items: left;
}

.question-header {
    width: 50%;
    padding: 10px;
    text-align: center;
}

.quiz-timer {
    width: 50%;
    padding: 10px;
    text-align: right;
}

.your-score {
    width: 90%;
    background: rgb(194, 235, 189);
    max-width: 1000px;
    margin: 30px auto 0;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    font-size: 18px;   
    
}

.quiz-copyright {
    font-weight: 100;
    text-align: right;
    font-style: italic;
    font-size:xx-small
}



/* ---------------------------------------------- */

/* THE BELOW SECTION IS FOR HANDLING THE CSS ON MOBILE DEVICES*/

/* ---------------------------------------------- */

@media (max-width: 500px) {

    .quiz-container {
        background: white;
        width: 80%;
        max-width: 500px;
        margin: 60px auto 0;
        border-radius: 10px;
        padding: 25px; 
    }

    .quiz-container h1 {
        font-size: 18px;
        border-bottom: 1px solid #333;
        padding-bottom: 20px;
    }

    .quiz {
        padding: 15px 0;
    }

    .quiz-container h2 {
        font-size: 16px;
    }

    .btn {
        background: white;
        color: #222;
        width: 100%;
        padding: 8px;
        border: 1px solid #222;
        margin: 8px 0;
        font-size: 16px;
        text-align: left;
        border-radius: 4px;
        cursor: pointer;
        transition: all 0.1s;
    }

    .btn:hover:not([disabled]) {
        background: #222;
        color: #fff;
    }

    .btn:disabled {
        cursor: no-drop;
    }

    #next-btn {
        background: #001e4d;
        color: #fff;
        font-size: 18px;
        border: 0;
        padding: 10px;
        border-radius: 4px;
        margin: 10px auto 0;
        cursor: pointer;
        display: none;
    }

    .correct {
        background: #9aeabc;
    }

    .incorrect {
        background-color: #ff9393;
    }

    .hide {
        display: none;
    }

    .metrics {
        display: flex;
    }
    
    .quiz-progress {
        width: 50%;
        padding: 5px;
        align-items: left;
        font-size: 12px;
    }

    .question-header {
        width: 50%;
        padding: 10px;
        text-align: center;
        font-size: 12px;
    }

    .quiz-timer {
        width: 50%;
        padding: 5px;
        text-align: right;
        font-size: 12px;
    }

    .your-score {
        width: 80%;
        background: rgb(194, 235, 189);
        max-width: 500px;
        margin: 10px auto 0;
        border-radius: 10px;
        padding: 20px;
        text-align: center;
        font-size: 15px;        
    }
   
    .quiz-copyright {
        font-weight: 100;
        text-align: right;
        font-style: italic;
        font-size:xx-small
    }

}