.wrapper {
	margin: 0 auto;
	max-width: 1200px;
	padding: 30px;
}

.wrapper h1 {
	font-size: 2.5em;
	font-weight: bold;
	line-height: 3rem;
	margin-bottom: 20px;
}
.wrapper h2 {
	font-size: 1.5em;
	font-weight: bold;
	line-height: 3rem;
	margin-bottom: 20px;
}

.wrapper p {
	font-size: 1.2em;
	line-height: 1.6;
	margin-bottom: 20px;
	max-width: 640px;
}

.wrapper .site-logo {
	display: block;
	font-weight: bold;
	font-size: 1.5em;
}

.wrapper .nav ul {
	display: flex;
	justify-content: space-between;
	gap: 2rem;
	margin: 2rem 0;
	font-weight: bold;
	align-items: center;
}

@media (min-width: 500px) {
	.wrapper.header {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
}

.wrapper .button {
	background-color: #007bff;
	color: white;
	padding: 10px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

.wrapper .button:hover {
	background-color: #0056b3;
}
