* {
    font-family: 'Indie Flower', cursive;
    transition: color 0.3s ease-out;
}

/* This changes all the animations globaly */
:root {
  --animate-duration: 300ms;
}

html, body, button, form, input, table {
    font-size: 24px;
}

a, a:link, a:visited {
    color: #008552;
}

:fullscreen #go-fullscreen {
    display: none;
}

table {
    border-collapse: collapse;
    margin: 1rem auto;
    width: 100%;
    max-width: 600px;
}

td {
    padding: .3rem;
    border-bottom: 1px solid #333333;
    text-align: right;
}

h1 {
    color: rgb(255, 128, 0);
    text-align: center;
    font-size: 36px;
    margin: 1rem 0 0 0;
    background: linear-gradient(90deg, #d53369 0%, #daae51 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    margin: 24px 0;
}

.hidden {
    display: none;
}

#info {
    margin-top: 2rem;
    text-align: left;
}

button {
    font-weight: bold;
    margin: 0.5em;
    padding: 0.5em 2em;
    color: #333;
    background: linear-gradient(130deg, #9ebd13 0%, #008552 100%);
}

button:hover {
    background: #008552;
    color: white;
}

#game {
    margin: 20px;
    text-align: center;
}

label {
    display: block;
    width: 10em;
    text-align: left;
    margin: auto;
}

#input label {
    text-align: right;
}

.input__button-ct {
    margin-top: 1rem;
}

.input__button-ct > * {
    padding: 0.5rem 1.6rem;
}

input[type=number] {
    text-align: right;
    background-color: #eee;
    color: #333;
    border: 1px solid #333;
    padding: .3em;
    width: 100%;
}

input[type=number],
#question
{
    font-size: 30px;
}

input:disabled,
button:disabled,
button:disabled:hover
{
    background: #eee;
    color: #999;
    border: none;
    transition: none;
}

#answer {
    font-weight: bold;
    text-transform: uppercase;
}

.right {
    color: #008552;
}

.wrong {
    color: #850052;
}

.newHighScore {
    color: #446699;
}
