@media (max-width: 600px) {
    html:after, html:before {
        position: fixed;
        z-index: 1000;
        top: 0;
        left: 0;
        height: 100%;
    }
    
    html:after {
        content: "SORRY DOESN'T WORK ON PHONE YET LMAO";
        box-sizing: border-box;
        white-space: pre-wrap;
        width: 100vw;
        height: 100vh;
        max-width: 100%;
        display: flex;
        margin: auto;
        justify-content: center;
        align-items: center;
        font-family: sans-serif;
        font-size: calc(2rem + 1vw);	
        letter-spacing: 2.5px;
        padding: 10px;
        color: white;
        text-align: center;
    }
    
    html:before {
        content: "";
        position: fixed;
        background-color: black;
        width: 100%;
    }

    body { 
        display: none;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Major+Mono+Display&display=swap');
* {
    -ms-interpolation-mode: nearest-neighbor;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-pixelated;
    image-rendering: pixelated;
    box-sizing: border-box;
}

::selection {
    background: transparent;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
    overflow: hidden;
    font-size: calc(0.6rem + 0.2vw + 0.5vh);
    font-family: 'Major Mono Display', monospace;
    letter-spacing: 1px;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
/******/

/* GENERAL COLORS */
:root { 
    --dark-color: black;
    --bright-color: white;
    --ally-color: #00ffff;
    --enemy-color: #ff00ff;
    --neutral-color: #ffff00;
}

body, html {
    background: var(--dark-color);
    color: var(--bright-color);
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.bright { color: var(--bright-color) }
.dark { color: var(--dark-color) }
.ally { color: var(--ally-color) }
.enemy { color: var(--enemy-color) }
.neutral { color: var(--neutral-color) }

/** VOLUME SLIDER - THIS MAY JUST BE MOVED SOMEWWHERE ELSE EVENTUALLY **/
.fa-volume-off {
	color: var(--bright-color);
	font-size: 1.5em;
    cursor: pointer;
}

#volume-menu {
    position: fixed;
    top: 2.5vmin;
    left: 2.5vmin;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	z-index: 1000000;
	transition: opacity 1s cubic-bezier(.33,.63,.14,.99);
	transform-origin: left center;
    opacity: 0.4;
}

#volume-menu:hover { 
    opacity: 1;
}

#volume-menu input {
	-webkit-appearance: none;
	width: 150px;
	height: 5px;
	background: linear-gradient(90deg, rgba(255,255,255,0) 0%, var(--bright-color) 100%);
	border-left: 2px solid var(--bright-color);
	outline: none;
	padding: 10px 0;
	border-radius: 50px;
}

#volume-menu input::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 10px;
	height: 10px;
	transform: rotate(45deg);
	border-radius: 100%;
	border: 2px solid var(--bright-color);
	background: var(--dark-color);
}

#volume-menu input::-moz-range-thumb {
	width: 10px;
	height: 10px;
	transform: rotate(45deg);
	border-radius: 100%;
	border: 2px solid var(--bright-color);
	background: var(--dark-color);
}

/***GENERIC SYSTEM STUFF***/