body {
    margin: 0;
    padding: 0;
    background-color: black;
    color: white;
    font-family: 'Arial', sans-serif;
    text-align: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.container {
    width: 90%;
    max-width: 600px;
    margin: auto;
    position: relative;
}

#question-container {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: bold;
}

button {
    background-color: white;
    color: black;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
}

a {
    font-size: 0.8em;
    color: grey;
    text-decoration: underline;
}

.reset-btn {
    position: absolute;
    top: 0;
    left: 0.2em;
    /*padding: 10px;*/
    cursor: pointer;
    font-size: 2.5em;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    color: black;
    font-weight: bold;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 100%;
    max-height: 80%;
    overflow: auto;
}

.close {
    position: absolute;
    top: 0;
    right: 0.2em;
    /*padding: 10px;*/
    cursor: pointer;
    font-size: 3em;
}

#new-game-btn,
#continue-btn {
    background-color: white;
    color: black;
    border: none;
    padding: 10px 20px;
    margin: 10px;
    font-size: 1em;
    cursor: pointer;
}