body {
	font-family: monospace;
	text-align: center;
	font-size: 16px;
	background-color: #efefef;
	color: #000;
}

h1, h2, h3, h4, h5 {
	font-weight: normal;
	font-size: 16px;
}

a {
	color: #000;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

.h-100vh {
	height: 100vh;
}

.inline {
	display: inline;
}

.flex {
	display: flex;
}

.flex-column {
	flex-direction: column;
}

.flex-space-around {
	justify-content: space-around;
}

.flex-space-between {
	justify-content: space-between;
}