html,
body {
    position: relative;
    width: 100%;
    height: 100%;
}

body {
    color: #333;
    margin: 0;
    padding: 8px;
    box-sizing: border-box;
    font-family: temple-run-small-caps, Arial, Helvetica, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -o-user-select: none;
}

a {
    color: #0064c8;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

a:visited {
    color: #0050a0;
}

label {
    display: block;
}

input,
button,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    padding: 0.4em;
    margin: 0 0 0.5em;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 2px;
}

input:disabled {
    color: #ccc;
}

input[type='range'] {
    height: 0;
}

button {
    color: #333;
    background-color: #f4f4f4;
    outline: none;
}

button:disabled {
    color: #999;
}

button:not(:disabled):active {
    background-color: #ddd;
}

button:focus {
    border-color: #666;
}

.overlay-container {
    background-color: transparent;
    margin: auto;
    padding: 0;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: absolute;
    text-align: center;
}

.button-container {
    margin: 0 auto;
    position: absolute;
    width: 100%;
    bottom: 2px;
    display: flex;
    justify-content: space-between;
    overflow: unset;
}

@font-face {
    font-family: temple-run-small-caps;
    src: url(./fonts/temple-run-small-caps.eot);
    src: url(./fonts/temple-run-small-caps.eot?#iefix) format('embedded-opentype'),
    url(./fonts/temple-run-small-caps.woff2) format('woff2'),
    url(./fonts/temple-run-small-caps.woff) format('woff'),
    url(./fonts/temple-run-small-caps.ttf) format('truetype'),
    url(./fonts/temple-run-small-caps.svg#temple-run-small-caps) format('svg');
}

.label {
    display: block;
    text-transform: uppercase;
    background: linear-gradient(
        to bottom,
        #fcfa61 0%,
        #fcfa61 19%,
        #faf55f 23%,
        #f0dd54 36%,
        #d39a35 66%,
        #cb872c 78%,
        #ca842b 80%,
        #ca842b 100%
    );
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 24px;
    font-weight: 100;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #000;
}

.label.medium {
    font-size: 14px;
}

.label.small {
    font-size: 10px;
}

.subheader {
    font-size: 12px;
    color: #4f291c;
}
