html, body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #333333;
  color: #fff;
  font-family: system-ui, sans-serif;
}

.content {
  flex: 1;
  display: flex;
}

.page {
  max-width: 820px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
}

a {
	color: #90caf9;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

.nowrap {
	white-space: nowrap;
}

.site-footer {
  background: #000;
  padding: 30px 0;
  color: #ccc;
  font-size: 14px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-copy {
  text-align: center;
  opacity: 0.8;
}