* {
	box-sizing: border-box;
}

html, body {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	background: White;
}

article,
article > a {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

article {
	height: 100%;
	gap: 20px;
}
article > a {
	width: 100px;
	height: 100px;
	background: #24A1DE;
}
article > a > span {
	text-align: center;
	font-size: 20px;
	color: White;
}

a {
	text-decoration: none;
	color: inherit;
}
