:root {
  --geometric-blue: #000370;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  display: flex;
  flex-direction: column;
  background-color: var(--geometric-blue);
  color: #ffffff;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
}

.page {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
  text-align: center;
}

.container {
  width: 100%;
  max-width: 48rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.logo {
  width: 100%;
  max-width: 42rem;
  height: auto;
}

.content {
  width: 100%;
  max-width: 40rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.content p {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.6;
}

.content a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  transition: opacity 0.15s ease;
}

.content a:hover,
.content a:focus-visible {
  opacity: 0.75;
}

@media (max-width: 480px) {
  .content p {
    font-size: 1rem;
  }
}

.footer {
  padding: 0 1.5rem 1.5rem;
  text-align: center;
}

.footer p {
  margin: 0;
  font-size: 0.8rem;
  opacity: 0.6;
}
