h1 {
    position: relative;
    margin: 0;
    padding: 0;
    perspective: 12px;
    perspective-origin: 50% 0%;
  }
  h1 span, h1::after {
    color: #fff;
    font-weight: 800;
    letter-spacing: 0;
    scale: 0.7 1.6;
    inset-block-start: -0.3em;
    transform: rotateX(0deg);
  }
  h1 span {
    position: absolute;
    z-index: 1;
  }
  h1::after {
    display: block;
    position: relative;
    content: attr(arial-label);
    filter: blur(1px) contrast(3);
    text-shadow: 0px 3px 9px #e46e6e, 0px 8px 12px #9e7639;
    mix-blend-mode: hard-light;
  }
  h1::before {
    content: attr(arial-label);
    display: block;
    position: absolute;
    inset-block-start: 0.6em;
    filter: blur(0.065em) contrast(5);
    font-weight: 900;
    letter-spacing: calc(1em * 0.05);
    text-shadow: 0px 0.1em 0.13em #b08747, 0px 0.5em 0.16em #5539b7;
    color: transparent;
    -webkit-background-clip: text;
            background-clip: text;
    background-size: 95% 100%;
    background-image: linear-gradient(90deg, #5b4b80 6%, #cb1e31 29%, #e79231 53%, #ec111a 75%, #735b85 94%);
    transform-style: preserve-3d;
    transform: rotateX(45deg);
    mix-blend-mode: difference;
    z-index: 0;
  }
  
  body {
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, #050505 30%, #290e0e 70%);
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    font-size: clamp(1.56rem, 1vw + 1.31rem, 2.11rem);
    font-family: "EB Garamond", serif;
  }
  body::after {
    display: block;
    content: "";
    pointer-events: none;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: transparent url("https://assets.codepen.io/108082/Noise.png") 0 0;
    background-size: 320px 320px;
  }
  @supports (height: 100dvh) {
    body {
      height: 100dvh;
    }
  }