* {
	box-sizing: border-box;
}

body {
	margin: 0;
	padding: 2em 1em;
	min-height: 100vh;
	background: #264347;
}

.logo {
	display: block;
	width: 260px;
	margin: 0 auto;
}

.links {
	display: flex;
	flex-direction: column;
}

.link {
	position: relative;
	display: block;
	width: 100%;
	margin-top: 2em;
	background-color: #6c7a7e;
}

.link:after {
	content: '';
	display: block;
	padding-bottom: 50%;
}

.link__bg,
.link__text {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

.link__bg {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.link__bg--v60 {
	background-image: url('./images/thumbnail-v60.png');
}
.link__bg--vikings {
	background-image: url('./images/thumbnail-vikings.png');
}

.link__text {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1em;
	color: #fff;
	font-family: Arial, Helvetica, sans-serif;
	text-align: center;
	line-height: 1.4;
}

@media (min-width: 768px) {
	body {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}

	.links {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		max-width: 1280px;
		margin: 0 auto;
	}

	.link {
		width: 48.5%;
		margin-top: 2.5em;
	}
}

@media (min-width: 1020px) {
	body {
		padding: 2em;
	}
}
