* {
	box-sizing: border-box;
}

body {
	margin: 0;
	padding: 0;
	min-height: 100vh;
	background: black;
	color: white;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

h1 {
	font-size: 3rem;
	text-align: center;
}

section {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: center;
	width: fit-content;
	max-width: 1200px;
	gap: 1rem;
	margin-inline: auto;
}

article svg {
	width: 1.5rem;
}

a {
	text-decoration: none;
	color: white;
	border: 1px solid white;
	border-radius: 0.5rem;
	text-align: center;
	height: 110px;
	min-width: max-content;
	width: 200px;
	max-width: 300px;
}
