#myinput {
    background-color: white(255, 255, 255);
    border: none;
    color: black;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 30px;
    font-family: nunito-v32-latin-regular;
    border-radius: 12px;
    padding: 10px; /* Added padding so your text doesn't hit the edges */
}

#myinput:hover {
    background-color: dodgerblue;
    color: white;
}

/* Added a focus state so it changes when the player clicks inside to type */
#myinput:focus {
    background-color: deepskyblue;
    outline: none; /* Removes the default browser highlight */
}