*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	height: 100%;
}

body {
	margin: 0;
	background: #121212;
	color: #f0f0f0;
	height: 100%;
	font-family: 'Jost', sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
}

main {
	display: grid;
	align-content: start;
	justify-content: center;
	height: 100%;
	max-width: 60rem;
	margin: 0 auto;
	padding: 1rem;
}

h1 {
	padding-block: 1rem;
	margin: 0;
	margin-bottom: 0.5rem;
	display: flex;
	flex-direction: column;
	font-family: 'Moirai One', system-ui;
	font-weight: 400;
	font-style: normal;
	font-size: 4rem;
	line-height: 0.7;
	text-align: center;
	span:last-child {
		font-size: 1.75em;
	}
	@media (max-width: 40em) {
		font-size: 2.5rem;
	}
}

h2,
p {
	text-align: center;
}

.icons {
	text-align: center;
	a {
		user-select: none;
		display: inline-block;
		padding: 0.2rem 1rem;
		place-items: center;
		/* height: 1.5rem; */
		/* aspect-ratio: 1; */
		background: #fafafa;
		color: #121212;
		text-decoration: none;
		font-size: 1.125rem;
		border-radius: 0.75rem;
		transition: background-color 0.1s;
		&:hover {
			background: #fa8888;
		}
	}
}

footer {
	text-align: center;
}
