﻿/* THREE.js stuff */
.webgl {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -2;
}

.webgl-cover {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	background-color: rgba(0, 0, 0, 0.5);
}

/* Font Stuff */
* {
	font-family: "Plus Jakarta Sans", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
}

/* Global Styles */
* {
	color-scheme: dark;
}

h1,
p,
span,
label,
li,
img {
	color: #0cacbe;
}

a {
	text-decoration: none;
	color: #91f2f2;
}

a,
a * {
	transition: all 0.2s ease;
}

a:hover:not(.no-glow),
a:hover:not(.no-glow) * {
	color: #b6f1f8;
	text-shadow:
		0 0 8px rgba(145, 242, 255, 0.45),
		0 0 16px rgba(145, 242, 255, 0.45),
		0 0 24px rgba(145, 242, 255, 0.45);
	transition: all 0.2s ease;
}

.button {
	color: #91f2f2;
	font-size: 1.1rem;
	padding: 10px;
	border-radius: 5px;
	border: 2px solid #91f2f2;
	transition: all ease 0.2s;
	background-color: rgba(0, 0, 0, 0);
}

.button:hover {
	color: #b6f1f8;
	text-shadow: none;
	border: 2px solid #b6f1f8;
	box-shadow:
		0 0 8px rgba(145, 242, 255, 0.45),
		0 0 16px rgba(145, 242, 255, 0.45),
		0 0 24px rgba(145, 242, 255, 0.45);
	transition: all ease 0.2s;
}
