html, body {
	margin: 0;
	width: 100%;
	height: 100%;
	background: #061a3a;
	}
body {
	display: flex;
	align-items: center;
	justify-content: center;
	}
img {
	max-height: 75vh;
	max-width: 90vw;
	width: auto;
	height: auto;
	}
/* Permanent Marker, Bebas Neue, Black Ops One, Rubik Spray Paint, Special Elite */
.coming-soon {
	position: absolute;
	/* font-family: "Black Ops One", sans-serif; */
	font-family: "Special Elite", sans-serif;
	font-size: 96pt;
	color: rgba(55, 155, 255, 0.88);
	transform: rotate(-8deg);
	text-shadow: 2px 2px 0 rgba(0,0,0,.25);
	white-space: nowrap;
	opacity: 0;
	animation: fadeIn 5s ease-in 6s forwards;
	}
@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
	}
.splash {
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	}
.splash video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	}
.upper-right {
	position: absolute;
	top: 0;
	right: 0;
	}

.main-links {
	position: absolute;
	top: 30px;
	right: 30px;
	display: flex;
	gap: 24px;
	}
.main-links a {
	color: #777;
	transition: color .25s ease, transform .25s ease;
	}
.main-links a:hover {
	color: #fff;
	transform: scale(1.15);
	}
.login-modal {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.5);
	}

.login-modal[hidden] {
	display: none;
	}

.login-box {
	position: relative;
	width: min(90%, 400px);
	padding: 30px;
	box-sizing: border-box;
	background: white;
	border-radius: 8px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
	}
.login-box h2 {
	margin: 0 0 25px 0;
	text-align: center;
	}
.login-box label {
	display: block;
	margin-bottom: 8px;
	}
.login-box input[type="email"],
.login-box input[type="text"] {
	width: 100%;
	box-sizing: border-box;
	padding: 10px;
	margin-bottom: 20px;
	font-size: 16px;
	border: 1px solid #aaa;
	border-radius: 4px;
	}
.login-box fieldset {
	margin: 5px 0 20px 0;
	padding: 0;
	border: 0;
	}
.login-box fieldset legend {
	margin-bottom: 10px;
	}
.login-box fieldset label {
	display: inline-block;
	margin-right: 20px;
	}
.login-box fieldset input {
	margin-right: 5px;
	}
.login-button {
	width: 100%;
	padding: 11px;
	font-size: 16px;
	cursor: pointer;
	border: 0;
	border-radius: 4px;

	background-color: #4a6fa5;
	color: white;
	transition: background-color 0.15s ease, transform 0.05s ease;
	}
.login-button:hover {
	background-color: #3d5f8f;
	}
.login-button:active {
	background-color: #334f77;
	transform: translateY(1px);
	}
.login-close {
	position: absolute;
	top: 8px;
	right: 12px;
	padding: 0;
	border: 0;
	background: none;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	}
.login-error {
	margin-bottom: 15px;
	padding: 8px 10px;
	border: 1px solid #c00;
	border-radius: 4px;
	font-size: 14px;
	}
.login-message {
	margin-bottom: 20px;
	text-align: center;
	}
.login-resend {
	display: block;
	margin: 18px auto 0;
	border: 0;
	background: none;
	cursor: pointer;
	text-decoration: underline;
	}

.button-spinner {
	width: 18px;
	height: 18px;
	vertical-align: -4px;
	margin-right: 6px;
	animation: button-spin 2s linear infinite;
	}
@keyframes button-spin {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
	}

