html, body {
	min-height: 100%;
	height: 100%;
	font-family: system-ui, sans-serif;
}

body {
	margin: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

h1 {
	margin-bottom: 100px;
	text-decoration: underline;
}

.file-container {
	width: 100%;

	display: flex;
	justify-content: space-evenly;
}

a {
	padding: 3%;
	background: #c32a3b;
	color: white;
	text-align: center;
	text-decoration: none;
	font-weight: bold;
	font-size: 2em;
	box-shadow: 4px 4px 8px rgb(0 0 0 / 20%);
}

a:hover {
	background: #333;
}