body {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	background: linear-gradient(to right, #ff9966, #ff5e62);
	margin: 0;
	overflow: hidden;
}

.container {
	text-align: center;
	max-width: 600px;
}

h1 {
	font-size: 4rem;
	color: #fff;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
	animation: fadeIn 2s ease-in-out;
}

p {
	font-size: 1.2rem;
	color: #fff;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
	animation: fadeIn 2s ease-in-out;
	animation-delay: 0.5s;
}

.contact-link {
	display: inline-block;
	background-color: #fff;
	color: #ff5e62;
	border-radius: 5px;
	padding: 10px 20px;
	text-decoration: none;
	margin-top: 20px;
	animation: slideIn 1s ease-in-out;
	animation-delay: 1s;
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes slideIn {
	0% {
		transform: translateX(100px);
		opacity: 0;
	}
	100% {
		transform: translateX(0);
		opacity: 1;
	}
}
