* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background-color: #112d33;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100dvh;
	font-family: "IBM Plex Mono", monospace;
  font-weight: 500;
  font-style: normal;
	padding: 0 1rem;
}

.wrapper {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

h1 {
	margin-bottom: 2rem;
	text-align: center;
}

h4 {
	margin-bottom: 1rem;
}

ul {
	list-style-type: none;
}

li:not(:last-child) {
	margin-bottom: .5rem;
}

@media (min-width: 768px) {
	* {
		text-align: center;
	}
}
