hr {     
	background-color: #000;
    border: 0 none;
    color: #000;
    height: 0.5px;
}
h1 { font-size: 12px; font-weight: 600; }
i { color: ; }
a { color: inherit; text-decoration: none;}
a:hover {
    text-decoration: underline;
}

body { padding: 0; margin: 0; background: #4f4f4f }
video { width: 100vw; height: 100vh; object-fit: cover; position: fixed; top: 0; left: 0 }

button {
	height: 30px; 
	border: 1px solid black; 
	border-radius: 10px; 
	font-size: 12px;
	color: black;
	font-family: Helvetica, Arial, sans-serif;
	background-color: rgba(255, 255, 255, 0.0);
	position: absolute;
}

.mute { 
	right: 10px;
	bottom: 20px;
}

.info-desktop {
	color: #868686;
	position: relative;
	float: left;
	top: 8px;
	height: 27px;
	font-size: 12px;
	border: 1px solid #717171b8;
	display: none;
}

.info-mobile {
	left: 10px;
	bottom: 20px;
}

.os-link {
	border: 1px solid rgba(165, 176, 183, 0.1);
	border-radius: 10px;
	padding: 6.5px;
	margin: 2px;
	width: fit-content;
	font-size: inherit;
	color: inherit;
	position: relative;
	text-shadow: inherit;
	display: block-inline;
}

.os-link-mobile {
	border: 1px solid rgb(39,39,39);
	border-radius: 10px;
	padding: 6.5px;
	margin: 2px;
	width: fit-content;
	font-size: inherit;
	color: inherit;
	position: relative;
	text-shadow: inherit;
	display: block-inline;
}

.info-text {
	padding: 30px;
	padding-top: 30%;
	font-size: 10px;
	font-family: Helvetica, Arial, sans-serif;
	font-weight: normal;
	display: none;
	color: inherit;
}

.text-desktop {
	padding-top: 12%;
	text-align: left;
	font-weight: lighter;
}

.text-mobile { 
	width: 60%;
}

#close-window { 
	border: none;
	backdrop-filter: none;
	color: rgb(165 176 183);
	text-shadow: 0px 0px 2px rgb(0 0 0);
	font-weight: lighter;
	font-size: 15px;
	right: 3%;
}

#preview-notice {
	font-weight: lighter;
	width: 80%;
	padding: 5%;

    background: linear-gradient(90deg, black 20%, transparent 20%), 
            linear-gradient(90deg, black 20%, transparent 20%), 
            linear-gradient(0deg, black 20%, transparent 20%), 
            linear-gradient(0deg, black 20%, transparent 20%);
    background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
    background-size: 5px 1px, 5px 1px, 1px 5px, 1px 5px;
    background-position: 0% 0%, 100% 100%, 0% 100%, 100% 0px;
    border-radius: 0px;
    animation: dash 20s linear infinite;
}


@keyframes dash {
    to {
        background-position: 100% 0%, 0% 100%, 0% 0%, 100% 100%;
    }
}

#webgl-container { position: absolute; }
#webgl-container.desktop { left: 50%; top: 50%; transform: translate(-50%, -50%) }

#mobile-overlay { 
	width: 100%; 
	height: 100%; 
	top: 0; 
	left: 0; 
	box-sizing: border-box; 
	backdrop-filter: blur(0px); 
	-webkit-backdrop-filter: blur(0px); 
	padding: 10px; 
	position: fixed; 
	z-index: 10; 
	display: none;
}

#loading-mobile {
	font-family: Helvetica, Arial, sans-serif; 
	font-weight: lighter; 
	font-size: 12px; 
	display: none;
	transform: translate(-50%, -50%);
	position: absolute; 
	text-align: center; 
	left: 50%; 
	top: 50%;
}

@supports (-webkit-backdrop-filter: none) or (backdrop-filter: none) {
	#desktop-overlay {
		width: 19%;
		height: 37%;
		transform: translate(-50%, -50%);
    	border: 1px solid rgb(113, 113, 113);
    	border-radius: 8px;
		text-shadow: 0px 0px 6px rgb(0 0 0 / 50%);
    	color: rgb(165 176 183);
		top: 50%; 
		left: 50%; 
		box-sizing: border-box; 
		backdrop-filter: blur(3px); 
		-webkit-backdrop-filter: blur(3px); 
		padding: 0px; 
		position: fixed; 
		z-index: 10; 
		display: none;
	}
}

/* fallback for Firefox */
@supports not ((-webkit-backdrop-filter: none) or (backdrop-filter: none)) {
	#desktop-overlay {
		width: 20%;
		height: 38%;
		transform: translate(-50%, -50%);
    	border: 1px solid rgb(113, 113, 113);
    	border-radius: 8px;
		text-shadow: 0px 0px 6px rgb(0 0 0 / 50%);
    	background-color: rgba(0,0,0,0.08);
    	color: rgb(165 176 183);
		top: 50%; 
		left: 50%; 
		box-sizing: border-box; 
		padding: 0px; 
		position: fixed; 
		z-index: 10; 
		display: none;
	}
}

#app-canvas { 
	background: #4f4f4f; 
	border: 1px solid #666; 
	width: 1280px;
	height: 720px;
}

.mobile #canvas { 
	width: 100%; 
	height: 100%;
}

#loading-display { 
	position: absolute; 
	left: 50%; 
	top: 50%; 
	transform: translate(-50%, -50%); 
	display: none;
}

#loading-gif { 
	width: 128px; 
	height: 128px; 
	margin: 0 auto; 
	background: url('swimmy_grey.gif') no-repeat center; 
	background-size: contain; 
}

#loading-text { 
	font-family: Helvetica, Arial, sans-serif; 
	font-weight: lighter; 
	font-size: 12px; 
	color: #888;
	text-align: center; 
}

#title { 
	font-family: Helvetica, Arial, sans-serif; 
	font-size: 12px; 
	font-weight: lighter; 
	color: rgb(165 176 183);
}

#title-mobile { 
	font-family: Helvetica, Arial, sans-serif; 
	font-size: 12px; 
	font-weight: normal; 
	color: black;
}

#footer { position: relative }
.mobile #footer { display: none }

#fullscreen-button {
	position: relative;
	top: 8px; 
	float: right; 
	border: 1px solid #717171b8;
	border-radius: 10px; 
	width: 25px; 
	height: 25px; 
	background: url('expand.png') no-repeat center; 
	background-size: 50%; 
	background-clip:content-box;
	display: none;
}
