@font-face {
	font-family: 'Terminess';
	src: url('assets/fonts/TerminessNerdFont-Regular.ttf') format('truetype');
}

* {
	margin: 0;
	padding: 0;
}
body {
	min-height: 100vh;
	background: #101010;
	color: #d4bd98;
	font-family: 'Terminess', monospace;
	font-size: 16px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.container {
	border: 1px solid #d4bd98;
	padding: 2rem;
}
h1 {
	font-size: 16px;
	font-weight: normal;
	margin-bottom: 1rem;
}
a {
	color: #d4bd98;
	text-decoration: none;
}
.copyright {
	margin-top: 1rem;
	font-size: 16px;
}

#overlay {
	position: fixed;
	inset: 0;
	background: #101010;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	z-index: 9999;
	transition: opacity 0.33s ease;
}

#overlay p {
	animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
	0%, 100% { opacity: 1; }
	50%       { opacity: 0.33; }
}
