html {
    overflow-y: scroll;
}
html, body {
    width: 100%;
    height: 100%;
    padding: 0px;
    margin: 0px;
    font-family: "Lucida Sans Unicode","Lucida Grande",sans-serif;
    background-color: #E0E0E0;
}
.nobreak {
    white-space: nowrap;
    overflow: hidden;
}
.topnav {
    font-family: Georgia,serif;
    background-color: #2A4D10;
    color: #FFFFFF;
    text-align: center;
    padding: 1em;
    font-size: 12pt;
}
.topnav a {
    color: #FFFFFF;
    text-decoration: underline;
    margin-left: 1em;
    margin-right: 1em;
}
.topnav a:hover {
    text-decoration: none;
}
.header2 {
    margin-top: 40px;
    text-align: center;
}
#game {
    opacity: 0.3;
    pointer-events: none;
}
#word {
    text-align: center;
    font-size: 36pt;
    font-weight: bold;
    letter-spacing: 1em;
    text-transform: uppercase;
}
#usr_input {
    text-align: center;
    font-size: 24pt;
}
#stats {
    text-align: center;
    font-size: 16pt;
    display: none;
}
#green,#yellow,#red {
    opacity: 0.25;
    font-size: 30pt;
    cursor: pointer;
}
#green:hover,#yellow:hover,#red:hover {
    opacity: 1;
}
a {
color: #000000;
    text-decoration: underline;
}
a:hover {
    text-decoration: none;
}
#guess, #go {
    font-size: 24pt;
}
p, ul {
    margin-left: 10%;
    margin-right: 10%;
}
.errMsg {
    font-weight: bold;
    color: red;
}
.succMsg {
    font-weight: bold;
    color: green;
}
.modal {
    position: flex;
    z-index: 1;
    padding-top: 5em;
    left: 0;
    top: 0;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    overflow: auto;
}
.modal_content {
    background-color: #FFFFFF;
    margin: auto;
    padding: 1em;
    border: 2px solid #000000;
    width: 90%;
}
.modal input {
    font-size: 14pt;
    margin-top: 0.5em;
}
@media (max-width: 767px) {
    #word {
        font-size: 24pt;
        letter-spacing: 0.5em;
    }
    #usr_input {
        font-size: 16pt;
    }
    #stats {
        font-size: 12pt;
    }
    #red, #yellow, #green {
        font-size: 20pt;
    }
    #guess, #go {
        font-size: 16pt;
    }
}