:root {
  color: #20201e;
  background: #e8e5df;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-width: 320px;
  min-height: 100%;
  margin: 0;
}

body {
  min-height: 100vh;
  overflow: hidden;
}

.scene {
  position: relative;
  display: grid;
  min-height: 100vh;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgb(255 255 255 / 45%), transparent 31rem),
    #e8e5df;
}

.frame {
  position: absolute;
  width: min(84vw, 1240px);
  aspect-ratio: 1.9 / 1;
  border: 1px solid rgb(32 32 30 / 23%);
}

.frame::before,
.frame::after {
  position: absolute;
  content: "";
  background: rgb(32 32 30 / 23%);
}

.frame::before {
  top: -1px;
  bottom: -1px;
  left: 50%;
  width: 1px;
}

.frame::after {
  right: -1px;
  bottom: 50%;
  left: -1px;
  height: 1px;
}

.halo {
  position: absolute;
  z-index: -1;
  border: 1px solid rgb(32 32 30 / 14%);
  border-radius: 50%;
}

.halo--one {
  width: min(94vw, 1420px);
  aspect-ratio: 1.78 / 1;
}

.halo--two {
  width: min(67vw, 1000px);
  aspect-ratio: 1.78 / 1;
}

h1 {
  margin: 0;
  color: #20201e;
  font-size: clamp(4.4rem, 12.6vw, 12.6rem);
  font-weight: 400;
  letter-spacing: -0.085em;
  line-height: 0.82;
  transform: translateX(-0.045em);
}

@media (max-width: 560px) {
  .frame {
    width: 82vw;
    aspect-ratio: 1 / 1.45;
  }

  .halo--one,
  .halo--two {
    width: 148vw;
    aspect-ratio: 1 / 1.45;
  }

  h1 {
    font-size: clamp(4rem, 19vw, 6.3rem);
  }
}
