/* .hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: grid;
    gap: 0 5em;
    padding: 10em 1em 0 1em;
    overflow: hidden;
    font-family: 'ClashDisplay-Bold', sans-serif;
    color: var(--color-secondary);
  }

  .hero h1 {
    display: flex;
    flex-direction: column;
    align-self: end;
    text-align: center;
    gap : 0.3em;
    font-weight: 700;
    font-size: max(12vw,34px);
    width: fit-content;
    width: 100%;
  }

  .hero-bottom {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-self: self-start;
    width: fit-content;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    height: 100%;
    font-size: max(2vw,20px);
  }

  .hero-bottom span {
    padding: 0.35em 0em;
    border-top: 2px solid var(--color-secondary);
  }


@media (max-width: 1024px) {

  .hero {
    padding: 10em 1em 5em 1em;
  }

  .hero h1 {
    font-size: max(12vw,45px);
  } */

  /* .hero-bottom {
    font-size: max(4vw,20px);
  } */

/* } */

.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 5em;
  overflow: hidden;
  font-family: 'Notch Grotesk', sans-serif;
  color: var(--color-secondary);
}

.hero h1 {
  font-size: max(12vw, 34px);
}

canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: transparent;
  color: transparent;
  transition : color 0.2s ease, background-color 0.2s ease;
}


@media screen and (max-width: 1280px) {
  canvas {
    display: none !important
  }
}