body {
	background-color: #222;
	color: #bbb;
	font-family: Arial, sans-serif;
}
.logo {
	text-align: center;
	margin-top: 50px;
}
.logo img {
	height: 40vh;
}
.links {
	display: flex;
	justify-content: center;
	margin-top: 10em;
}
.links a {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 0 10px;
	position: relative;
	opacity: 1;
	transition: opacity 0.3s ease-in-out;
	text-decoration: none;
	color: inherit;
	height: 30vh;
}
.links img {
	max-width: 100%;
	max-height: 80%;
	border-radius: 10%;
}
.links a::after {
	content: attr(data-name);
	position: absolute;
	bottom: 8%;
	left: 50%;
	transform: translateX(-50%);
	opacity: 0;
	color: #009db2;
	font-size: 3em;
	transition: opacity 0.5s ease-in-out;
}
.links a:hover::after {
	opacity: 1;
}
.footer {
	text-align: center;
	margin-top: auto;
	opacity: 0.7;
	padding: 20px;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
}
.footer p {
	margin-bottom: 0;
	font-size: 2em;
}

.footer a {
	padding-left: 0.5em;
	padding-right: 0.5em;
}
