body {
    font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-size: 2em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#start-title {
    font-family: monospace, monospace;
    height: 2.75em;
    font-size: 1.4em;
    font-weight: 500;
    justify-content: center;
    padding: 0.5em 0.25em;
}

#guess-message {
    height: 4em;
    padding: 0.5em 0.25em;
    font-size: 0.7em;
}

#start-message {
    height: 2em;
    font-size: 0.6em;
}

#title {
    font-family: monospace, monospace;
    font-size: 1.4em;
    height: 1em;
    font-weight: 500;
    padding: 0.5em 0;
}

#word {
    font-family: monospace, monospace;
    height: 4em;
    font-size: 1em;
    font-weight: 300;
    padding: 0.5em 0.25em;
}

#message {
    height: 2em;
    padding: 0.5em 0.25em;
    font-size: 0.5em;
}

#guesses {
    height: 3em;
    padding: 0.5em 0.25em;
    font-size: 0.75em;
}

#guessesLeft {
    height: 4em;
    padding: 0.5em 0.25em;
    font-size: 0.75em;
}

.myButton {
    background-color: #cccccc;
    border-radius: 28px;
    border: 1px solid #dcdcdc;
    display: inline-block;
    cursor: pointer;
    color: #3d3d3d;
    font-family: Arial;
    font-size: 17px;
    padding: 16px 31px;
    text-decoration: none;
    text-shadow: 0px 1px 0px #ffffff;
}

.myButton:hover {
    background-color: #bfbfbf;
}

.myButton:active {
    position: relative;
    top: 1px;
}

.blink-message {
    font-size: 0.8em;
}

.blink {
    animation: blinker 1s step-start infinite;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}