*, *::before, **::after {
	box-sizing: border-box;
}

body {
	font-family: sans-serif;
	line-height: 1.5;
	margin: 0;
	background-color: black;
	color: rgb(255, 227, 250);

	max-width: 960px;
	width: 100%;
	margin: 0 auto;
}

h1 {
	text-align: center;
}

.link-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 20px;
	padding: 10px;
}

.link-grid a {
	display: flex;
	justify-content: center;
	align-items: center;
}
