    :root {
        --width: calc(100vw/4 - 10px);
    }

    .game {
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
        padding: 15px;
        background-color: #6ac1d5;
        border-radius: 5px;
        margin: 10px;
    }

    .grid {
        display: grid;
        grid-template-columns: var(--width) var(--width) var(--width) var(--width);
        grid-template-rows: var(--width) var(--width) var(--width) var(--width);

    }

    .grid button {
        background-color: #cfcfcf;
        color: #000;
        font-size: 24px;
        font-weight: bold;
        border: 1px solid #550000;
        outline: none;
        cursor: pointer;
        background-position: center;
        background-size: contain;
    }

    .footer {
        margin-top: 15px;
        display: flex;
        justify-content: space-between;
    }

    .footer button {
        border: none;
        font-size: 20px;
        font-weight: bold;
        border-radius: 5px;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
        padding: 5px;
        width: 80px;
        background-color: #D4EE9F;
        color: #003333;
        outline: none;
        cursor: pointer;
    }

    .footer button:hover {
        color: #D4EE9F;
        background-color: #003333;
    }

    .footer span {
        flex: 1;
        text-align: center;
        font-size: 20px;
        color: #D4EE9F;
        font-weight: bold;
        margin: auto 0;
    }

    .message {
        color: #AA3939;
        height: 80px;
        display: none;
    }

    div.form-group {
        padding: 10px 5px;
    }

    input.form-control {
        width: 100%;
        border: 1px solid #ce1d00;
        border-radius: 5px;
        padding: 10px;
        height: auto;
        font-size: 14px;
    }

    input.form-control:focus {
        border: 1px solid #ce1d00;
    }

    div.custom {
        padding: 5px;
        font-size: 14px;
        background: #fff;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
        margin: 10px;
    }

    input[type="submit"] {
        background: #ce1d00;
        color: #fff;
        box-shadow: 0 0 .2em #ddd;
        padding: 10px 20px;
        border-radius: 5px;
        border: none;
        width: 50%;
        font-size: 14px;
        font-weight: bold;
    }

    .formDiv {
        display: none;
    }

    .keyboard-line {
        width: 100%;
        display: flex;
        flex-flow: row nowrap;
        justify-content: center;
        margin: 2px 0px;
    }

    div.keyboard {
        background: #C70039;
    }

    .keyboard-button {
        width: calc(100vw/10);
        height: calc(100vw/10);
        color: #fff;
        background: transparent;
        border: none;
        box-shadow: 0 0 0.1em rgba(0, 0, 0, 0.6);
        transition: .1s;
    }

    button.space {
        width: 50vw;
        display: block;
        margin: auto;
        padding: 2px 34px;
        background: transparent;
        border: none;
        box-shadow: 0 0 0.1em rgba(0, 0, 0, 0.6);
    }

    div.space-bar {
        color: #fff;
        padding: 2px;
    }

    .highlighted {
        -webkit-animation: highlight .1s linear;
        -moz-animation: highlight .1s linear;
        -ms-animation: highlight .1s linear;
        -o-animation: highlight .1s linear;
        animation: highlight .1s linear;
    }

    @keyframes highlight {
        0% {
            background: rgba(0, 0, 0, .3);
        }

        50% {
            background: rgba(0, 0, 0, .6);
        }

        100% {
            background: rgba(0, 0, 0, .3);
        }
    }

    #playButton {
        -webkit-animation: colorized .1s linear;
        -moz-animation: colorized .1s linear;
        -ms-animation: colorized .1s linear;
        -o-animation: colorized .1s linear;
        animation: colorized .1s linear;
    }

    @keyframes colorized {
        0% {
            font-weight: normal;
        }

        50% {
            font-weight: bold;
        }

        100% {
            font-weight: normal;
        }
    }

    .error {
        color: red;
        font-size: 10px;
        display: none;
    }

    /*        New Text*/
    table.scores-table {
        border: none;
        border-spacing: 0px;
    }

    table.scores-table thead tr th,
    table.scores-table tbody tr td {
        text-align: left;
        padding: 3px 1px;
    }

    table.scores-table thead {
        background: #999696;
        color: #000;
    }

    /*
        table.scores-table tbody tr td:first-child {
            color: red;
        }
    */

    table.scores-table tbody tr:nth-child(even) {
        background: #F7F7F7;
    }

    table.scores-table tbody tr:first-child {
        color: forestgreen;
        font-weight: bold;
    }

    .success {
        color: green;
        font-weight: bold;
        font-style: italic;
    }