:root {
	--bg: white;
	--fg: black;
	--highlight: #6c76ff;
}

@media (prefers-color-scheme: dark) {
	:root {
		--bg: black;
		--fg: white;
	}
}

body {
	background-attachment: fixed;
	background-color: var(--bg);
	background-size: cover;
	color: var(--fg);
	font-size: 15px;
	font-family: monospace;
}

a {
	text-decoration: none;
	color: var(--highlight);
}

p, h1, h2, h3, h4, h5 {
	margin: 15px 0;
}

.clamp {
	max-width: 700px;
	margin: 0 auto;
}

.title-body {
	text-align: center;
}

.bar-list {
	padding: 0;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	list-style: none;
}

.bar-list li {
	display: inline-block;
	margin: 0 12px 0 12px;
}

.section-header {
	text-align: center;
}

#title {
	font-size: 9vw;
	font-weight: 900;
}

@media (min-width: 700px) {
	#title {
		font-size: 4em;
	}
}
