:root {
  color-scheme: dark;
  --pink: #df2b68;
}

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

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

body {
  background: var(--pink);
}

.landing {
  position: relative;
  isolation: isolate;
  width: 100%;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 28%, rgba(237, 30, 100, 0.72), transparent 56%),
    var(--pink);
}

.landing::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.1;
  background-image:
    radial-gradient(circle at 18% 24%, #f7eee5 0 0.5px, transparent 0.8px),
    radial-gradient(circle at 76% 68%, #180b15 0 0.6px, transparent 0.9px);
  background-size: 5px 5px, 7px 7px;
  mix-blend-mode: soft-light;
}

.landing__artwork {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: auto;
  height: 100%;
  max-width: none;
  transform: translate(-50%, -50%);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 900px) and (orientation: portrait) {
  body,
  .landing {
    background: #0c090d;
  }

  .landing {
    min-height: 100svh;
    height: 100dvh;
  }

  .landing__artwork {
    top: 0;
    width: min(100vw, 56.3dvh);
    height: auto;
    transform: translateX(-50%);
  }
}
