* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	background: #000000;
	color: #ffffff;
	margin: 0;
	left: 50%;
	top: 50%;
	font-family: Arial, sans-serif;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}
.content {
    flex-grow: 1;
    padding: 20px;
}
.c {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: white;
	text-align: center;
	animation: blinking-glow 1.5s infinite;
	position: absolute;
	top: 25%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.title {
	font-weight: 700;
	font-size: 80px;
	color: white;
	text-align: center;
	animation: blinking-glow 1.5s infinite;
}
@keyframes blinking-glow {
	0%, 100% {
		text-shadow: 0 0 5px white, 0 0 10px white, 0 0 20px white, 0 0 30px white;
	}
	50% {
		text-shadow: 0 0 2px white, 0 0 4px white, 0 0 8px white, 0 0 15px white;
	}
}
.empty-block {
	width: 100%;
	height: 300px;
	background-color: transparent;
	margin: 20px 0;
}
.consolas {
	font-family: Consolas;
}
.center {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: white;
	text-align: center;
}
a {
  color: white;
  font-family: Consolas;
  cursor: pointer;
}
@media (max-width: 768px) {
	.title {
		font-size: 50px;
	}
}