h1 {
    color: #3080d0;
    font-weight: bolder;
    font-size: 1.6em;
    margin-bottom: 25px;
    margin-top: 20px;
    text-align: center;
    text-transform: uppercase;
}
h1 a {
    color: #3080d0;
}
.info {
    text-align: center;
    margin: 0 auto;
    max-width: 760px;
}

/* game- styles to be used in games if needed */
.game-button, a.game-button {
    font-family: Arial, Verdana, Tahoma;
    font-size: 1em;
    padding: 0.2em .4em;
    border-radius: 6px;
    border: 1px solid gray;
    background: #eee;
    opacity: 0.9;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    color: #000;
    text-align: center;
    text-decoration: none;
    transition-delay: 0s, 0s, 0s, 0s;
    transition-duration: 0.15s, 0.15s, 0.15s, 0.15s;
    transition-property: color, background-color, border-color, box-shadow;
    transition-timing-function: ease-in-out, ease-in-out, ease-in-out, ease-in-out;
    vertical-align: middle;
    line-height: 1.5em;
}
.game-button:hover, a.game-button:hover {
    background-color: #ddd;
}
.game-button:active, a.game-button:active {
    background-color: #ccc;
}
.game-button:disabled, a.game-button:disabled {
    opacity: 0.6;
    cursor: default;
}
.game-button:disabled:hover, a.game-button:disabled:hover {
    background-color: #eee;
}
.dark a.game-button {
    color: #000;
}
