*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  min-height: 100%;
  min-height: 100dvh;
  background: #fff;
  color: #000;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  padding:
    env(safe-area-inset-top, 0px)
    1.25rem
    env(safe-area-inset-bottom, 0px);
  position: relative;
}

.bg {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.7;
  animation: drift 22s ease-in-out infinite;
}

.bg-blob-1 {
  width: 48vmax;
  height: 48vmax;
  background: #f8c8dc;
  top: -15%;
  left: -10%;
  animation-duration: 24s;
}

.bg-blob-2 {
  width: 42vmax;
  height: 42vmax;
  background: #b8d8f8;
  bottom: -12%;
  right: -14%;
  animation-duration: 28s;
  animation-delay: -10s;
}

.bg-blob-3 {
  width: 36vmax;
  height: 36vmax;
  background: #ecd9b8;
  top: 30%;
  left: 40%;
  animation-duration: 20s;
  animation-delay: -16s;
}

@keyframes drift {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(10%, 6%) scale(1.06);
  }
  66% {
    transform: translate(-7%, 9%) scale(0.94);
  }
}

.page {
  width: 100%;
  max-width: 24rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.title {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 2rem;
}

.list {
  list-style: none;
}

.list li + li {
  margin-top: 0.75rem;
}

.list a {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.list a:hover,
.list a:focus-visible {
  opacity: 0.6;
  outline: none;
}

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