:root {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: #bcbcbc;
  color: #000;
}

* {
  box-sizing: border-box;
}

body {
  height: 100svh;
  min-height: 100svh;
  margin: 0;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #bcbcbc;
}

main {
  display: grid;
  width: 100%;
  place-items: center;
}

.logo {
  display: block;
  width: min(72vw, 50rem);
  height: auto;
}

footer {
  position: fixed;
  right: 1rem;
  bottom: max(0.75rem, env(safe-area-inset-bottom));
  left: 1rem;
  text-align: center;
  font-size: 0.6875rem;
}

footer a {
  color: rgb(255 255 255 / 84%);
  text-decoration: none;
}

footer a:hover,
footer a:focus-visible {
  color: #fff;
}
