@font-face {
	font-family: shadowTitle;
	src: url("assets/fonts/Bukhari_Script.ttf");
}

@font-face {
	font-family: shadowFont;
	src: url("assets/fonts/Alice.ttf");
}

* {
	box-sizing: border-box;
	font-family: "shadowFont";
}

body {
	background-attachment: fixed;
	background-image: url("assets/cave.webp");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	margin: 0%;
}

span, p {
	color: #FFFFFF;
}

a {
	color: #FF6040;
	font-weight: bold;
	text-decoration: none;
}
a:hover {
	filter: brightness(125%);
	transition: 0.1s;
}

.title {
	text-align: center;
	filter: drop-shadow(0.15em 0.15em 0.15em #000000);
}

.logo {
	aspect-ratio: 1/1;
	border: 1px solid #0E122A40;
	border-radius: 100%;
	height: 128px;
}

.signature {
	color: #FFFFFF;
	font-family: "shadowTitle";
	font-size: 3em;
	text-align: center;
}

.centered {
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
}

.panel {
	backdrop-filter: blur(16px);
	background-color: #0E122AC0;
	border: 1px solid #7C559B80;
	border-radius: 1em;
	max-height: 90%;
	max-width: 90%;
	min-width: 384px;
	overflow: auto;
	padding: 1.5em 1em 1em 1em;
}

.links {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 0.5em;
	justify-content: center;
	margin-bottom: 0;
	padding: 0;
	width: 100%;
}

.links a {
	backdrop-filter: blur(16px);
	background-color: #3D376D80;
	border: 2px solid #0E122A40;
	border-radius: 0.5em;
	font-size: 1.25em;
	padding: 0.375em;
	text-align: center;
	width: 100%;
}

.links a:hover {
	transform: scale(105%);
}

.links a span {
	align-self: center;
	font-weight: bold;
	text-shadow: 0.05em 0.05em #000000;
}

.links a img {
	height: 1em;
	float: left;
	position: relative;
	top: 0.1em;
}



.shadowHeader {
	filter: drop-shadow(0.15em 0.15em 0.15em #000000);
	font-family: "shadowTitle";
	font-size: 2.5em;
}

.shadowSubheader {
	font-size: 1.25em;
	font-weight: bold;
	text-decoration: underline;
}