@import url('/fonts/GocaLogotypeBeta/stylesheet.css');
@import url('/fonts/BarlowCondensed/stylesheet.css');
@import url('/fonts/Exo2/stylesheet.css');
@import url('/fonts/VGA/stylesheet.css');
* { box-sizing: border-box; }
:root {
	--font01: 'Goca Logotype Beta', system-ui;
	--font02: 'Barlow Condensed', system-ui;
}

.flexbox-x, .flexbox-y, .flexbox-x.flexbox-reverse, .flexbox-y.flexbox-revese { display: flex; }
.flexbox-x { flex-direction: row; }
.flexbox-y { flex-direction: column; }
.flexbox-x.flexbox-reverse { flex-direction: row-reverse; }
.flexbox-y.flexbox-revese { flex-direction: column-reverse; }
.centered, .ta-centered { text-align: center; }
.centered, .jc-centered { justify-content: center; }
.centered, .ai-centered { align-items: center; }
h1 {
	font-family: var(--font01);
	font-size: 2em;
	margin: 0;
}
a {
	text-decoration: none;
	color: cyan;
	transition: all 200ms ease;
}
a:hover {
	color: white;
	text-shadow: 0 0 12px;
}

html {
	width: 100vw;
	height: 100vh;
	background: linear-gradient(to bottom, black, #A0D7D7);
	color: white;
	font-family: var(--font02);
	font-size: 16px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
body {
	flex: 1;
	gap: 8px;
	margin: 1em auto;
	overflow-x: hidden;
	width: 800px;
	display: flex;
	flex-direction: column;
	backdrop-filter: saturate(2);
	filter: drop-shadow(0 0 16px white);
	padding: 1em;
	border-radius: 1em;
}
header {
	user-select: none;
	text-transform: uppercase;
	padding-top: 0.2em;
	width: 100%;
	text-align: center;
	font-size: 3rem;
	border-radius: 9999px;
	overflow: hidden;
	line-height: 1;
	font-family: var(--font01);
}
header span { transition: all 200ms ease; }
nav {
	border-radius: 9999px;
	background-color: #FFFFFF40;
	width: 100%;
	height: 1em;
}
hr {
	border: none;
	margin: 0;
	width: 100%;
	height: 1px;
	background-color: white;
}
main {
	font-size: 24px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.card {
	padding: 1ch;
	border-radius: 1em;
	backdrop-filter: saturate(10);
}
.card.card-warning {
	backdrop-filter: unset;
	background: linear-gradient(to bottom, #FF800040, #FF800040);
}