* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

body {
    background-color: rgb(31, 24, 95);
}

.app {
    background-color: white;
    width: 90%;
    max-width: 700px;
    margin: 100px auto 0;
    padding: 40px;
    border-radius: 10px;
}

#welcome {
    display: flex;
    flex-direction: column;
    text-align: center;
}

#start {
    padding: 10px 24px;
    background-color: red;
    cursor: pointer;
    border: none;
    margin: auto;
    outline: none;
    border-radius: 10px;
    font-family: 'Courier New', Courier, monospace;
    font-weight: 900;
}

#quiz {
    display: none;
    flex-direction: column;
    gap: 30px;
}

#next {
    display: none;
    width: fit-content;
    margin: auto;
    padding: 5px 24px;
    background-color: rgb(222, 14, 254);
    border-radius: 3px;
    border: none;
    cursor: pointer;
    outline: none;
}

.correct {
    background-color: green;
}

.incorrect {
    background-color: red;
}

.incorrect,
.correct {

    padding: 5px 20px;
    margin-left: 10px;
    border-radius: 5px;
}

.eachOption {
    margin-bottom: 30px;

    /* Adjust the value as needed */
}

#explanation {
    display: none;
    margin: auto;
    text-align: center;
    padding: 12px 20px;
    background-color: blueviolet;
    border-radius: 10px;
}

#scoreDiv {
    text-align: center;
    display: none;
}