* {
	box-sizing: border-box;
}

body {
	margin: 0;
	background: #ffffff;
	color: #000000;
	font-family: Verdana, Geneva, sans-serif;
	text-align: center;
}

.page {
	max-width: 900px;
	margin: 0 auto;
	padding: 100px 40px 60px;
}

.logo {
	margin-bottom: 20px;
	opacity: 0;
	animation: fadeInDown 1s ease-out 0.1s forwards;
}

.logo img {
	max-width: 300px;
	width: 100%;
	height: auto;
}

h1 {
	margin: 0 0 30px;
	font-size: 89px;
	font-weight: bold;
	line-height: 1.1;
	opacity: 0;
	animation: fadeIn 1s ease-out 0.4s forwards;
}

.description {
	margin: 0 auto;
	max-width: 700px;
	font-size: 30px;
	line-height: 1.4;
	white-space: pre-line;
	opacity: 0;
	animation: fadeIn 1s ease-out 0.7s forwards;
}

.contact {
	margin-top: 50px;
	padding-bottom: 20px;
	font-size: 30px;
	opacity: 0;
	animation: fadeInUp 1s ease-out 1s forwards;
}

@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes fadeInDown {
	from { opacity: 0; transform: translateY(-30px); }
	to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
	from { opacity: 0; transform: translateY(30px); }
	to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
	.logo, h1, .description, .contact {
		animation: none;
		opacity: 1;
	}
}

.envelope {
	display: inline-block;
	vertical-align: middle;
	margin-right: 10px;
	width: 30px;
	height: 30px;
}

.contact a {
	color: #000000;
	text-decoration: none;
	vertical-align: middle;
}

.contact a:hover,
.contact a:focus {
	text-decoration: underline;
}

@media (max-width: 600px) {
	.page {
		padding: 60px 20px 40px;
	}

	h1 {
		font-size: 48px;
	}

	.description {
		font-size: 20px;
	}

	.contact {
		font-size: 20px;
	}

	.envelope {
		width: 20px;
		height: 20px;
	}
}
