* {
    box-sizing: border-box;
  }
  
  html,
  body {
    width: 100%;
    height: 100%;
    margin: 0;
    overflow: hidden;
  }
  
  body {
    background: #1c1c1c;
  }
  
  #liquid {
    position: fixed;
    inset: 0;
  
    width: 100%;
    height: 100%;
  
    display: block;
  }
  
  .content {
    position: relative;
    z-index: 2;
  
    height: 100vh;
  
    display: flex;
    flex-direction: column;
    justify-content: center;
  
    padding-left: 8vw;
  
    color: #eee;
  
    pointer-events: none;
  }
  
  .content span {
    margin-bottom: 18px;
  
    color: #777;
  
    font-family: Inter, sans-serif;
  
    font-size: 11px;
  
    font-weight: 700;
  
    letter-spacing: .35em;
  }
  
  h1 {
    margin: 0;
  
    font-family:
      Inter,
      system-ui,
      sans-serif;
  
    font-size: clamp(
      60px,
      10vw,
      140px
    );
  
    line-height: .86;
  
    letter-spacing: -.075em;
  }
  
  h1 b {
    color: #666;
  }