@media only screen and (max-width: 1200px) {

    button.gameButton {
        display:inline-block;
        padding:0.5em 3em;
        border:0.16em solid #403e3e;
        margin:0 0.3em 0.3em 0;
        box-sizing: border-box;
        text-decoration:none;
        text-transform:uppercase;
        font-family:'Roboto',sans-serif;
        font-weight:400;
        color:#413f4b;
        text-align:center;
        transition: all 0.15s;
        width: 180px;
        height: 100px;

        touch-action: manipulation;

    }

    button.gameButton:hover {
        color:#929191;
        border-color:#5f5d5d;
    }

    button.gameButton:active {
        color:#BBBBBB;
        border-color:#BBBBBB;
    }

}

@media only screen and (min-width: 1201px) {

    button.gameButton {
        opacity: 0;
    }

}
