html, body {
    width: 100%;
    height: 100%;
    margin: 0;
}

body {
    overflow-y: auto;
    background-color: black;
    color: #dedede;
    font-style: normal;
    font-size: 24px;
}

.open-sans {
    font-family: 'Open Sans', sans-serif;
    font-optical-sizing: auto;
    font-variant-numeric: tabular-nums;
    font-variation-settings: 'wdth' 100;
    font-weight: 300;
}

.silkscreen {
    font-family: 'Silkscreen', sans-serif;
}

hr {
    color: #666;
    background-color: #666;
    height: 1px;
    border: none;
    max-width: 100%;
    width: 100%;
}

.no-select {
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
}

.hidden {
    visibility: hidden !important;
}

.visible {
    visibility: visible !important;
}

.no-display {
    display: none !important;
}

.flex-spacer {
    flex-grow: 1;
}

.transparent {
    opacity: 0;
}

.mono {
    font-family: 'Fira Mono';
}

a:link,
a:visited,
a:hover,
a:active {
    color: #dedede;
    cursor: pointer;
}

.header {
    font-size: 120%;
}

.content {
    width: 100%;
    height: 100%;
    padding: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    gap: 8px;
}

img.logo {
    width: 22.5vw;
    display: block;
}

@media only screen and (max-width: 800px) {
    body {
      font-size: 18px
    }
}