html,
body {
  padding: 0;
  margin: 0;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    "Open Sans",
    "Helvetica Neue",
    sans-serif;
  line-height: 1.6;
  font-size: 18px;
  background-color: #f7f7f7;
  color: #333;
}

.container {
  height: 100vh;
  padding: 0 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
}

.main-content {
  flex: 1;
  overflow-y: auto;
  padding: 5rem 0;
  max-width: 800px;
}

.main-content h1 {
  color: #001125;
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 5vw, 3rem);
}

.main-content p {
  font-size: 1.25rem;
  margin-top: 0;
}

.footer {
  width: 100%;
  height: 60px;
  border-top: 1px solid #eaeaea;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.9rem;
  padding: 10px 0;
}

.footer a {
  color: #0070f3;
  text-decoration: none;
  font-weight: bold;
  padding: 0 5px;
}

.footer a:hover {
  text-decoration: underline;
}