body {
	margin: 0;
	padding: 0;
	background-color: #000;
	color: #fffaf3;
	font-family: "Quattrocento Sans", sans-serif;
	font-size: 20px;
}

h1,
h2,
h3,
h4 {
	font-family: "Quattrocento Sans", sans-serif;
	font-weight: 700;
}

h1 {
	font-family: "Abril Fatface", serif;
	text-transform: uppercase;
	font-size: 7em;
	line-height: 0.9em;
}

header {
	display: flex;
	height: 100vh;
	width: 100%;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	margin: 0;
}

main {
	padding: 20px;
}

a {
	text-decoration: none;
	color: #fffaf3;
	outline: 0;
}

.info {
	font-size: 20px;
	font-weight: 400;
	position: absolute;
	top: 5vh;
}

.info *::first-letter {
	text-transform: uppercase;
}


.info .first,
.info .second {
	position: absolute;
	left: 0;
	visibility:hidden;
	opacity:0;
	transition: visibility 2s linear, opacity 2s linear;
	white-space: nowrap;
}

.info .first.show,
.info .second.show {
	visibility:visible;
	opacity:1;
	transition: visibility 2s linear, opacity 2s linear;
}

.info:first-of-type {
	left: 5vh;
}

.info:last-of-type {
	right: 5vh;
}

.to-main {
	font-size: 5em;
	font-weight: 400;
	position: absolute;
	bottom: 5vh;
}

.to-main:first-of-type {
	left: 5vh;
}

.to-main:last-of-type {
	right: 5vh;
}

.links {
	display: flex;
	flex-wrap: wrap;
	padding: 0;
	margin: 0;
	justify-content: center;
}

.links li {
	height: 300px;
	list-style: none;
	background-color: #fffaf3;
	color: #000;
	padding: 20px;
	box-sizing: border-box;
	transition: 0.6s background-color 0.2s, 0.6s color 0.2s;
	width: 300px;
	height: 300px;
	margin: 20px;
}

.links li:hover {
	background-color: #000;
	color: #fffaf3;
	transition: 0.6s background-color 0.2s, 0.6s color 0.2s;
}

.links > li > a {
	display: block;
	height: 100%;
	width: 100%;
	box-sizing: border-box;
}

.links li.dummy-fill {
	height: 0;
	padding: 0;
}

.links a {
	color: inherit;
}

.links p a {
	font-weight: 700;
}

.links h3 {
	margin: 10px 0;
}

p {
	line-height: 1.3em;

}
@media only screen and (max-width: 750px) {
	h1 {
		font-size: 4em;
	}
	
	.info .first,
	.info .second {
		white-space: initial;
	}

	.to-main {
		font-size: 3em;
		font-weight: 400;
	}
	
	.links li {
		width: 100%;
		height: 95vw;
		margin: 10px 0;
	}

	.links li:hover {
		transition: none;
		color: #000;
		background-color: #fffaf3;
	}

	main, 
	.links {
		flex-direction: column;
		align-items: center;
	}
}
