:root {
  --bg: #00adee;
  --text: #0b0b0b;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial,
    "Apple Color Emoji", "Segoe UI Emoji";
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("./animated-svg-background-css.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
}

.page {
  min-height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.logo-wrap {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 24px;
}

.logo {
  width: min(280px, 60vw);
  height: auto;
  animation: logoFadeIn 700ms ease-out both;
}

.social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 24px 14px;
}

.footer {
  width: 100%;
  background: #fff;
  padding: 18px 24px 22px;
  text-align: center;
}

.icon-link {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  text-decoration: none;
}

.icon-link:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}


.address {
  font-size: 14px;
  line-height: 1.35;
  font-weight: 600;
}

.nowrap {
  white-space: nowrap;
}

@keyframes logoFadeIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo {
    animation: none;
  }
}
