*,
*::after,
*::before {
	box-sizing: border-box;
}

:root {
	font-size: 15px;
}

body {
	margin: 0;
	--color-text: #fff;
	--color-bg: #000;
	--color-link: #aaa;
	--color-link-hover: #333;
	color: var(--color-text);
	background-color: var(--color-bg);
	font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.content {
	display: flex;
	flex-direction: column;
	width: 100vw;
	height: calc(100vh - 13rem);
	position: relative;
	justify-content: flex-start;
	align-items: center;
}

@media screen and (min-width: 53em) {
	.content {
		height: 100vh;
		justify-content: center;
	}
}

.centered-element {
	position: absolute;
	top: 85%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.content a:link {
	color: white;
	background-color: black;
	font-size: 15px;
	border: 1px solid white;
	padding: 15px 35px;
	margin-top: 35px;
	text-align: center;
	position: relative;
	font-weight: normal;
	font-style: normal;
	text-decoration: none;
	top: 44px;
}

.content a:hover {
	color: black;
	background-color: white;
}

.content a:visited {
	color: white;
}

	.content a:visited:hover {
		color: black;
		background-color: white;
	}