* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

html {
  background: #fbfafb;
}

body {
  margin: 0;
  min-height: 100svh;
  background: #fbfafb;
  color: #fbfafb;
  font-family: "Avenir Next", "Nunito Sans", "Inter", "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

.page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 2rem;
}

.center-logo {
  display: block;
  width: auto;
  height: auto;
  object-fit: contain;
  
}

.site-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.85rem 1rem 1rem;
  text-align: center;
  color: rgba(11, 34, 89, 0.62);
  font-size: clamp(0.66rem, 1.1vw, 0.86rem);
  line-height: 1.45;
  font-weight: 650;
  background: linear-gradient(180deg, rgba(250, 250, 250, 0), #fafafa 30%);
}

.site-footer p {
  margin: 0 auto;
  max-width: 76rem;
}

@media (max-width: 640px) {
  .page {
    padding: 1rem;
  }

  .center-logo {
    width: min(96vw, 970px);
  }

  .site-footer {
    padding: 0.75rem 0.85rem 0.9rem;
  }
}
