body {
	letter-spacing: -0.02em;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
	font-size: 16px;
	color: #3C3C42;
	line-height: 1.5;
}

a {
	color: inherit;
	text-decoration: none;
}

h1 {
	font-size: 2rem;
	font-weight: 600;
}

p {
	font-size: 1rem;
	font-weight: 400;
}

.container {
	max-width: 800px;
	margin: 0 auto;
	padding: 2rem;
}

.flex {
	display: flex;
}

.justify-center {
	justify-content: center;
}

.w-16 {
	width: 4rem;
}

.h-16 {
	height: 4rem;
}

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

.inline-block {
	display: inline-block;
}

.px-8 {
	padding-left: 2rem;
	padding-right: 2rem;
}

.py-5 {
	padding-top: 1.25rem;
	padding-bottom: 1.25rem;
}

.bg-gray-200 {
	background-color: #E5E7EB;
}

.rounded-md {
	border-radius: 0.375rem;
}

.rounded-md:hover {
	background-color: #D1D5DB;
}

.rounded-md:active {
	transform: scale(0.98);
}

.mb-5 {
	margin-bottom: 1.25rem;
}