    body {
        background-color: gray;
        padding: 10;
        margin: -5;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        width: 60;
        height: 100vh;
    }
    
    .container {
        flex-direction: column;
        width: 600px;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        max-width: 80rem;
        margin: 0 auto;
    }
    
    .container h1 {
        font-family: 'Times New Roman', Times, serif;
        background-color: darkblue;
        color: #eeeeee;
        font-size: 90;
        margin-top: -.5rem;
        padding: 15;
    }
    
    .container p {
        font-family: 'Times New Roman', Times, serif;
        font-size: 170%;
        background-color: whitesmoke;
        color: black;
        text-decoration: dotted;
        align-items: center;
        flex-direction: column;
    }
    
    button {
        flex-direction: column;
        display: inline-block;
        font-family: sans-serif;
        background-color: blueviolet;
        border-radius: 10px;
        border: 3px double #cccccc;
        color: white;
        text-align: center;
        font-size: 15px;
        padding: 20px;
        width: 200px;
        margin-top: 3px;
    }
    
    button:hover {
        box-shadow: 4px 3px 6px red;
    }
    
    #startpage {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    #timer {
        font-family: sans-serif;
        background-color: whitesmoke;
        color: black;
        font-size: x-large;
        text-shadow: .5px .5px black;
        justify-content: flex-start;
    }
    
    #quiz {
        display: none;
        flex-direction: column;
    }
    
    #result {
        display: none;
    }
    
    #gameover {
        text-align: center;
        display: none;
        flex-direction: column;
        align-items: center;
    }
    
    #highScore {
        height: 1.5rem;
        border: groove 2px;
    }
    
    #high-scorePage {
        display: none;
        width: 50%;
        border: solid;
        border-color: silver;
        border-bottom-style: groove;
        padding-bottom: .3rem;
        background: lightsteelblue;
    }
    
    #highscore-header {
        display: flex;
        justify-content: space-around;
        border-bottom-style: outset;
        margin-bottom: .5rem;
        background-color: blueviolet;
        color: white;
        font-family: sans-serif;
    }
    
    #highscoreContainer {
        height: 100%;
        width: 100%;
        display: none;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    #initials {
        margin: .5rem;
        height: 1.75rem;
    }
    
    #highscore-initials {
        display: inline-block;
        padding-left: 9.5rem;
        font-family: sans-serif;
        font-weight: bold;
    }
    
    #highscore-score {
        float: right;
        padding-right: 8.75rem;
        font-family: sans-serif;
        font-weight: bold;
    }
    
    #finalScore {
        padding-bottom: 0.5rem;
        font-size: x-large;
        font-family: sans-serif;
        font-weight: bold;
    }
    
    #endGameBtns {
        display: none;
    }