body {
    font-family: "Tagesschrift", system-ui;
    text-align: center;
    padding-top: 50px;
    background-color: bisque;
}

#wordDisplay {
    font-size: 2em;
    margin-bottom: 20px;
}

#inputField {
    font-family: "Tagesschrift", system-ui;
    font-size: 1.5em;
    padding: 5px;
    background-color: white;
    border-radius: 35px;
}

#startBtn {
    font-family: "Tagesschrift", system-ui;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    margin-top: 20px;
    border-radius: 35px;
}

#score {
    margin-top: 20px;
    font-weight: bold;
}

#score, #timer, #wpm {
    margin-top: 10px;
    font-weight: bold;
}

#timer {
    color: darkred;
}

.modal {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
}

.hidden {
    display: none;
}