* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

.page {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: black;
	background-image: url("/static/dark-honeycomb.png");
	font-family: "Segoe UI", "Tahoma", "Geneva", "Verdana", sans-serif;
}

.card {
	display: flex;
	flex: .5;
	width: 80%;
	height: 50%;
	border: 0.5vmin solid #3f5f5f;
	background: #353535;
	transition: 500ms;
	border-radius: 24px;
	text-decoration: none;
	color: white;
	font-size: 3vmin;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.card:hover {
	border: 0.5vmin solid white;
}

h1 {
	font-size: 10vmin;
}
