body {
	color: white;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	text-align: center;
	padding: 1rem;
	box-sizing: border-box;
}

.page-container {
	width: 100%;
	max-width: 600px;
	padding: 1rem;
	box-sizing: border-box;
}

h1 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	word-break: break-word;
}

ul {
	list-style: none;
	padding: 0;
}

li {
	font-size: 1.2rem;
	margin: 0.5rem 0;
	word-break: break-word;
}


@media (max-width: 600px) {
	h1 {
		font-size: 2rem;
	}

	li {
		font-size: 1rem;
	}
}
