* {
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 5%;
}

header {
    padding: 0 20%;
    line-height: 1.5;
    text-align: center;
    font-size: large;
    font-weight: 600;
}

#start-button {
    background-color: #500523;
    color: white;
    font-size: 20px;
    font-weight: 700;
    padding: 15px 25px; 
}

#start-button:hover {
    border: 2px solid;
    border-color: black;
    background-color: #2b2b2b;
}

.quiz-questions {
    display: flex;
    display: grid;
    gap: 20px;
}

.button-list {
    margin-top: 10px;
    display: grid;
    gap: 20px;
}

.button {
    background-color: #8f083e;
    border: 1px solid;
    border-color: #650a2e;;
    border-radius: 4px;
    color: white;
    font-weight: 600;
    padding: 10px;
}

.button:hover {
    background-color: #c1396f;
}

.timer-clock {
    display: flex;
    text-align: right;
    margin: 0;
    padding: 0;
    margin-bottom: 70px;
    margin-left: 75%;
}

.scoreboard {
    display: flex;
    justify-content: right;
    flex-direction: column;
}

.hide {
    display: none;
}

