* {
	background-color: black;
	color: white;
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
	text-decoration: none;
}

body {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100vh;
}

main {
	text-align: center;
}

img {
	width: 300px;
	height: auto;
	margin-top: 20px;
	margin-bottom: 40px;
}

h1 {
	font-size: 2.0em;
	margin-top: 20px;
}

footer {
	position: absolute;
	bottom: 0;
	width: 100%;
	text-align: center;
	padding: 10px;
	font-size: small;
	font-weight: lighter;
}

footer p {
	color: rgb(66, 66, 66);
}

footer a {
	color: rgb(51, 132, 63);
	text-decoration: underline;
}