body {
    font-family:monospace;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #3d0455;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}

#game-container {
    text-align: center;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 56px;
    font-weight: bold;
    text-decoration: underline;
}

#time-left, #score {
    font-size: 32px;
    color: #000;
}

#color-label {
    font-size: 90px;
    font-weight: bold;
}

#color-input {
    font-size: 24px;
    padding: 10px;
    margin-top: 20px;
    width: 70%;
    font-family:monospace;

}

#restart-button {
    font-size: 24px;
    padding: 10px 20px;
    margin-top: 20px;
    cursor: pointer;
    font-family:monospace;

}
