* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	color-scheme: light;
	background: #fff;
	font-size: clamp(1rem, 16px 0 .25vw, 1.25rem);
}

body {
	background: #fff;
	line-height: 1.6;
	font-optical-sizing: auto;
	font-weight: 800;
	font-style: normal;
	font-variation-settings: "wdth" 100;
	color: #111;
	min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6,
body {
	font-family: -apple-system, BlinkMacSystemFont, "Noto Sans", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

h1 {
	font-size: 3rem;
	line-height: 1.1;
	padding: 0 0 1rem;
	color: #333;
}
h2 {
	font-size: 2.125rem;
	line-height: 1.15;
	padding: 0 0 .75rem;
}
h3 {
	font-size: 2.125rem;
	line-height: 1.15;
	padding: 0 0 1rem;
}
h4 {
	font-size: 2.5rem;
	line-height: 1.1;
	padding: 0 0 1.5rem;
	color: #333;
}
h5 {
	font-size: 1.125rem;
	line-height: 1.3;
}
h6 {
	font-size: 1rem;
	line-height: 1.35;
}

.container {
	max-width: 80vw;
	margin: 0 auto;
}

.logo {
	display: flex;
	justify-content: center;
	padding: 2rem;
}
.logo img {
	width: auto;
	height: 250px;
}

.content {
	color: #a61e26;
	text-align: center;
}

@media (prefers-color-scheme: dark) {
  body {
    background: #fff;
    color: #111;
  }
