*{
    box-sizing: border-box;
}

body { 
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;

}

.high-scores-nav {
    position: fixed;
    left: 20px;
    top: 20px;
    text-decoration: underline;
}

.timer {
    position: fixed;
    right: 20px;
    top: 20px;
}

main {
    display: flex-box;
    flex-direction: column;
    margin-top: 30px;
    margin-left: 200px;
    margin-right: 200px;
    margin-bottom: 30px;
    text-align: center;
}


h1 {
    color: rgb(162, 4, 4);
    text-align: center;   
}

p {
    text-align: center;
}

.start-button {
    margin: 0 auto;
    background-color: black;
    color: white;
    padding: 5px;
    border: none;
    border-radius: 7px;
    cursor: pointer;    
    transition: background-color 0.3s ease;
}

button:hover {
    background-color:gray;
}

button:active {
    background-color: gray;
}

.question-container {
    color: blue;
}

.choices {
    margin: 10px 0;
    background-color: black;
    color: white;
    padding: 5px;
    border: none;
    border-radius: 7px;
    cursor: pointer;    
    transition: background-color 0.3s ease;
}

.choices:hover {
    background-color: gray;
}

.choices:active {
    background-color: gray;
}

.answer-buttons {
    display: block;      
    padding: 0;
    margin: 10px 0;
    background-color: black;
    color: white;
    padding: 5px;
    border: none;
    border-radius: 7px;
    cursor: pointer;    
    transition: background-color 0.3s ease;
}

.hidden {
    display: none;
}

.clear-scores-button {
    margin: 0 auto;
    background-color: black;
    color: white;
    padding: 5px;
    border: none;
    border-radius: 7px;
    cursor: pointer;    
    transition: background-color 0.3s ease;
}

.go-back-button {
    margin: 0 auto;
    background-color: black;
    color: white;
    padding: 5px;
    border: none;
    border-radius: 7px;
    cursor: pointer;    
    transition: background-color 0.3s ease;
}
