@font-face {
    font-family: PixelOperatorSC;
    src: url(PixelOperatorSC.ttf);
}

* {
    outline: 0 ! important;
    border: 0;
    box-sizing: border-box;
}

html, body {
    touch-action: none;
}

body {
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100vw;
    background-color: black;
    color: white;
    font-style: normal;
    font-weight: normal;
    overflow: hidden;
    font-size: 2em;
    font-family: PixelOperatorSC, sans-serif;
}

button, select, input, legend {
    background: none;
    border: none;
    -moz-appearance: none;
    appearance: none;
    overflow: hidden;
    font-family: PixelOperatorSC, sans-serif;
    font-size: 1em;
    cursor: pointer;
}

a {
    color:goldenrod;
}

a:hover {
    color:white;
}

#black {
    /* display: none; */
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0;
    transition: opacity 5s;
    z-index: 20;
}

#black.startup {
    /* display: block; */
    opacity: 1;
}

html, canvas {
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.hidden {
    display: none !important;
}

h1 {
    text-align: center;
    color: goldenrod;
    font-size: 5vmin;
    line-height: 8vmin;
    text-shadow: 0.5vmin 0.5vmin black;
    margin: 0;
    padding: 0;
}

h1#title {
    position: absolute;
    top: 1vmin;
    right: 2vmin;
    margin-left: -16vmin;
    width: 100%;
    text-align: center;
    z-index: 30;
    width: 32vmin;
    white-space: nowrap;
    cursor: pointer;
}

h2 {
    display: block;
    width: 100%;
    float: left;
    text-align: center;
    background-color: rgb(24, 17, 36);
    color: goldenrod;
    font-weight: normal;
    margin: 0.2em 0 0 0;
}

h3 {
    width: 100%;
    text-align: center;
    margin: 0 0 5% 0;
    font-weight: normal;
    color: goldenrod;
}

p {
    padding: 0;
    margin: 0 0 0.6em 0;
    line-height: 1.4em;
    text-align: center;
}

#licenseText p {
    text-align: left;
}

#about {
    position: absolute;
    z-index: 50;
    width: 60vw;
    height: 80vh;
    left: 20vw;
    top: 10vh;
    background-color: black;
    border: 1px solid goldenrod;
    padding: 3vh;
    font-size: 2vmin;
    text-align: center;
    overflow-y: auto;
}