body {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	margin: 0;
	font-family: Arial, Helvetica, sans-serif;
	background-color: #0f0f0f;
}

h1 {
	margin-bottom: 10px;
	font-size: 80px;
}

h1 a {
	color: white;
	text-decoration: none;
}

.content {
	text-align: center;
	color: white;
}

.links a {
	display: inline-block;
	position: relative;
	margin: 10px 0;
	text-decoration: none;
	color: #007BFF;
	padding-bottom: 2px;
	font-size: 25px;
}
.links a::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 0;
	height: 2px;
	background-color: #007BFF;
	transition-property: width, left;
	transition-duration:  0.3s;
	transition-timing-function: ease-in-out;
}
.links a:hover::after {
	width: 100%;
	left: 0%;
}