* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Courier New', monospace;
	overflow: hidden;
	width: 100%;
	height: 100vh;
}

#info {
	position: absolute;
	top: 10px;
	left: 10px;
	color: white;
	background-color: rgba(0, 0, 0, 0.7);
	padding: 10px 15px;
	border-radius: 4px;
	font-size: 14px;
	z-index: 100;
}

#info a {
	color: #00ffff;
	text-decoration: none;
	font-weight: bold;
}

#info a:hover {
	color: #ffff00;
	text-decoration: underline;
}

#loading-spinner {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.9);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 1000;
}

.spinner {
	border: 4px solid rgba(255, 255, 255, 0.3);
	border-top: 4px solid #00ffff;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	animation: spin 1s linear infinite;
	margin-bottom: 20px;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

#loading-spinner p {
	color: #00ffff;
	font-size: 16px;
	font-family: 'Courier New', monospace;
	letter-spacing: 2px;
}
