body {
	font-family: 'Causten', sans-serif;
	font-weight: 300;
	display: flex;
	min-height: 100vh;
	min-width: 100%;
	background-color: #000;
	color: var(--brand);
	align-items: center;
	justify-content: center;
	text-align: center;
	flex-direction: column;
	gap: 40px;
	padding: 40px;
}

h2 {
	font-weight: 400;
	font-size: 20px;
	padding-bottom: 10px;
}

h3 {
	font-size: 14px;
	padding: 10px;
}

h4 {
	font-size: 10px;
	text-decoration: underline;
}

hr {
	border: none;
	height: 1px;
	background-color: var(--brand);
	margin: 10px 0;
}

ul {
	display: flex;
	flex-direction: column;
	align-items: start;
}

li {
	font-size: 16px;
	padding: 10px;
}

a {
	display: flex;
	align-items: center;
	gap: 10px
}

a img {
	width: 10px
}