body {
    color: #eee;
    margin: 0;
    height: 100vh;
    background: #535353 url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200"%3E%3Crect width="200" height="200" fill="transparent" /%3E%3Crect width="195" height="195" fill="rgba(0, 0, 0, 0.9)" /%3E%3C/svg%3E') repeat;
    animation: moveBackground 60s linear infinite;
}

@keyframes moveBackground {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 100% -75%;
    }
}

@font-face {
    font-family: 'monocraft';
    src: url('/assets/monocraft/Monocraft.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'monocraft';
    src: url('/assets/monocraft/Monocraft-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'monocraft';
    src: url('/assets/monocraft/Monocraft-SemiBold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'monocraft';
    src: url('/assets/monocraft/Monocraft-SemiBold-Italic.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
}

body {
    /*background-image: url('/img/bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;*/
    color: #eeeeee;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 2rem;
    background-color: #111111;
    user-select: none;
}

a {
    color: #4C99B2;
    text-decoration: none;
}

a:hover {
    color: #3366CC;
    text-decoration: underline;
}

.small {
	padding: 0;
	margin: 0;
	font-size: 1.75rem;
}

.container {
    /*max-width: 780px;*/
    margin: 0 auto;
    /*padding: 5px 20px;*/
    /*border-radius: 5px;*/

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.monospace {
    font-weight: normal;
    font-family: monocraft, 'Courier New', Courier, monospace;
}

.text-center {
    text-align: center;
}

.nav {
    display: flex;
	flex-direction: column;
    flex: 1;
    flex-basis: 0;
    list-style-type: none;
    padding: 0;
    justify-content: center;
}

.nav li {
    margin: 0 10px;
}

.nowrap {
    white-space: nowrap;
}

.responsive {
    max-width: 100%;
    height: auto;
	object-fit: contain;
}

.btn {
    display: inline-block;

    text-decoration: none;
    background-color: #037ea3;
    padding: 8px 10px;
    border-radius: 8px;
    color: #ffffff;
    font-weight: 500;
    transition: 100ms;
}

.btn:hover {
    color: white;
    background-color: #0195c2;
}

.btn-prism {
    background-color: hsl(350, 66%, 55%);
}

.btn-prism:hover {
    background-color: hsl(350, 66%, 63%);
}

.btn-discord {
    background-color: #5865F2;
}

.btn-discord:hover {
    background-color: #8891f2;
}

.btn img {
    width: 36px;
    vertical-align: middle;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.col {}

.content {
    margin: 0 auto;
}

.blink {
    animation: blink 1s step-start 0s infinite;
}

@keyframes blink {
    50% {
        opacity: 0.0;
    }
}