  
body {
  background-color: #b6ef73;
  height: 100dvh;
  height: 100vh;
  display: flex;
  flex-direction: column;
  cursor: none !important;
}
  .container {
    position: relative;
    display: flex;
    width: 100vw;
    /* height: 78vh; */
    align-items: center;
    scrollbar-width: none;
    overflow-x: auto;
    overflow-y: hidden;
    flex: 1;
    }
  
  .circle {
    height: 100%;
    aspect-ratio: 1/1;
    border: none;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    overflow-x: hidden;
    flex-shrink: 0;


    transition: ease-in-out 0.4s;
    }
  
    .circle:first-child {
    margin-right: 0;
    }

  .circle.active {
    font-variation-settings: "wght" 132;
    border-radius: 3%;
    margin-right: 0;
  }

  .circle img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* fills the circle while preserving aspect */
    display: block;
  }

  .circle-cube {
    height: 100%;
    aspect-ratio: 1/1;
    border-radius: 3%;
    position: relative;
    z-index: 1;
    overflow-x: hidden;
    flex-shrink: 0;
    border: none !important;
    border-style: none !important;

    transition: ease-in-out 0.4s;
    }

  .overlay-text {
    height: 100%;
    width: 100%;
    font-variation-settings: "wght" 200;
    font-family: tiny;
    font-size: 8vw;
    color: black;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .glow {
    transition: ease-in-out 0.4s;
    font-variation-settings: "wght" 150;
    font-size: 110%;
  }

  .glow:hover {
    /* color: greenyellow; */
    color: white;
    font-variation-settings: "wght" 132;
  }

  .overlay-read-text {
    font-variation-settings: "wght" 450;
    font-family: clash;
    color: black;
    border: none!important;
    border-style: none!important;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: left;
  }

  .overlay-read-text.center, 
  #text-center {
    width: 100%;
    height: 100%;
    background-color: transparent;
    position: relative;
    text-align: center;
    justify-content: center;
    border: none!important;
    border-style: none!important;
  }

  h1 {
    font-size: 175%;
    padding: 0 4.5%;
    margin: 0.1%;
    font-variation-settings: "wght" 490;
  }

  h2 {
    font-size: 1.5vw;
    padding: 0 4.5%;
    margin: 0.2%;
  }

  p {
    font-size: 170%;
    margin: 1% 5%;
    font-variation-settings: "wght" 490;
  }

  .ratio {
    aspect-ratio: 0;
  }


  @media (max-width: 900px) {
    .circle.active:first-child {
      border-radius: 50%;
    }

    h1 {
      font-size: 1rem;
      margin: 1% 0%;
      font-variation-settings: "wght" 490;
    }

    h2 {
      font-size: 3.5vw;

    }
  
    p {
      font-size: 3.8vw;
      margin: 1% 7%;
      line-height: 130%;
    }

    .ratio {
      aspect-ratio: 1/1;
    }
  



    .overlay-text {
      font-size: 500%;
      font-variation-settings: "wght" 132;
      line-height: 92%;
    }

    .glow:hover {
      font-variation-settings: unset;
    }
  }
  