*{
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    .header{
      position: relative;
      width: 100vw;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #e5e5e5;
      flex-direction: column;
      transition: background-color 0.3s ease;
    }

    .header .hero-header{
      position: absolute;
      top:35%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 60%;
      text-align: center;
      display: flex;
      flex-direction: column;
      gap: 2em;
      will-change: transform, opacity;
    }

    .animated-icons{
      position: fixed;
      bottom: 1rem;
      left: 0rem;
      right: 1rem;
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1rem;
      will-change: transform;
      z-index: 2;
    }

    .animated-icon{
      flex: 1;
      aspect-ratio: 1/1;
      will-change: transform;
      background-size: cover;
      background-position: center center;
      background-repeat: repeat;
    }
    .animated-icon img{
      height: 100%;
      width: 100%;
      object-fit: cover;
      transform: scale(0.9);
    }


    .animated-text{
      position: relative;
      max-width: 1000px;
      text-align: center;
      color: #141414;
      font-size: clamp(2rem, 5vw, 4rem);
      font-weight: 800;
      line-height: 1;
      font-family: 'font-2';
    }

    .text-segment{
      opacity: 0;
    }

    .placeholder-icon{
      margin-top: -10px;
      width: 60px;
      height: 60px;
      display: inline-block;
      vertical-align: middle;
      will-change: transform;
      visibility: hidden;
    }


 .heading {
    position: relative;
    height: fit-content;
    display: flex;
    justify-content: space-between;
}

.heading .letters {
  font-family: 'font-1';
    font-size: clamp(50px, calc(0.5em + 12vw), 200px);
    display: block;
    color: #fdf9f0;
}

.quote {
    font-family: 'heading';
    color: #fdf9f0;
    font-size: clamp(12px, calc(0.5em + 3vw), 50px);
    margin-top: -10vh;
}


    @media (max-width: 1000px){
      .animated-text{
        padding: 20px;
      }

      .header .hero-header{
        width: 70%;
      }

      .placeholder-icon{
        margin-top: -4px;
        width: 30px;
        height: 30px;
      }
      .quote{
        margin-top: 0%;
      }

      

    }


    @media (max-width: 500px){
      .animated-icons{
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        aspect-ratio: 1/1;
        gap: 5%;
        padding: 30px;
        bottom: 6%;
      }
      .animated-icon{
        width: 46%;
      }
      .icon-5,
      .test-5{
        display: none;
      }
      .header .hero-header{
        top:30%;
        width: 60%;
      }

    }
