body {
	margin: 0;
	padding: 0;
	height: 100vh;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #1f47ac;
}

/* Complete link state reset */
a,
a:link,
a:visited,
a:hover,
a:active {
	text-decoration: none;
	color: inherit;
	cursor: pointer;
}

.hero {
	color: #ff2400;
	font-weight: 800;
	font-size: 2.4rem;
	font-family: "Segoe UI";
	animation: glow 2.5s ease-in-out infinite alternate;
}

.contact-container {
	position: absolute;
	bottom: 2rem;
	left: 0;
	right: 0;
}

.contact {
	display: flex;
	gap: 0.25rem;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.email {
	margin: 0;
	padding: 0;
	color: #b8c7ff;
	font-family: "Segoe UI";
}

@keyframes glow {
	from {
		text-shadow: 0 0 5px rgba(255, 36, 0, 0.2), 0 0 10px rgba(255, 36, 0, 0.1);
	}
	to {
		text-shadow: 0 0 8px rgba(255, 36, 0, 0.3), 0 0 15px rgba(255, 36, 0, 0.2),
			0 0 20px rgba(255, 36, 0, 0.1);
	}
}
