* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    margin: 30px 50px;
    width: 90%;
}
.top-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px;
}
.view-highscores {
    /* border: 1px solid blue; */
    display: block;
    text-decoration: none;
    color:rgb(168, 107, 209);
    font-weight: bolder;
}
.timer {
    display: block;
    font-weight: bolder;
    margin-right: 80px;
    min-width: 80px;
}
.quiz-section {
    display:flex;
    flex-direction: column;
    width: 70%;
    align-items: center;
    margin: 0 13%;
}
#quiz-question {
    text-align: left;
}
.top-section {    /* same element as questionContainer */
    width: 80%;
    display: block;
    text-align:left;
    padding-bottom: 15px;
}
.intro {
    /*text-align: center; */
    margin: 10px 0;
}
.answer-choices {   /* same element as choiceContainer */
    width: 80%;
    min-height: 30px;
}
ol {
    min-width: max-content;
}
li {
    list-style: inside;
    list-style-type: decimal;
    margin: 5px 0px;
    padding: 2px;
    list-style: none;
}
li button, button {
    background-color: rgb(50, 34, 90);
    color: white;
    min-width: 100px;
    padding: 5px;
    border-radius: 5px;
    text-align: left;
}
li button:focus, button:focus {
    background-color: rgb(112, 67, 226);
}
.correct-wrong {
    border-top: 2px solid brown;
    width: 80%;
    text-align: left;
    padding: 10px;
    font-size: larger;
    font-weight: bolder;
    margin-top: 15px;
    font-style: italic;
}
.bottom-section {
    margin-top: 20px;
    height: 50px;
}
.bottom-section button {
    text-align: center;
    color: white;
    background-color: rgb(71, 49, 128);
    border-radius: 5px;
    padding: 5px;
    width: 100px;
    display: block;
    margin: 0 auto;
    text-align: center;
}
.bottom-section button:focus {
    background-color: rgb(112, 67, 226);
}
