body{
  margin: 0;
}
@media screen and (min-width: 800px) {
  *{
    cursor: none;
  }
}

.trail-dot {
  width: 20px;
  height: 20px;
  background-color: rgb(115, 255, 0);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  will-change: transform;
  pointer-events: none;
}



@font-face {
    font-family: 'tiny';
    src: url("../fonts/TINY5x3GX.ttf") format("truetype");
  }

  @font-face {
    font-family: 'clash';
    src: url("../fonts/ClashDisplay-Variable.ttf") format("truetype");
  }

a{
    text-decoration: none; /* entfernt die Unterstreichung */
    color: inherit; /* übernimmt die Textfarbe vom Elternelement */
  }

  .menu-active {
    font-variation-settings: "wght" 132;
  }

  .team:hover {
    color: #e27d9f;
  }

  a.team.active {
    color: #e27d9f;
  }

  .home:hover {
    color: #b6ef73;
  }

    a.home.active,
  a.studio.active {
    color: #b6ef73;
  }

  .termin:hover {
    color: #807ce0;
  }

  a.termin.active {
    color: #807ce0;
  }

  


  .menu-container {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    overflow: hidden;
    z-index: 100;
    width: 100vw;
    height: 9.94vw;
  }

  .menu-circle {
    flex: 1;
    aspect-ratio: 1 / 1;
    background-color: black;
    border-radius: 50%;
    margin-left: -5%;
    position: relative;
    z-index: 1;
    height: 100%;
  }

  .menu-circle:first-child {
    margin-left: 0;
  }

  .menu-circle:nth-child(2) {
    margin-left: -4%;
  }

  #gone {
    background-color: transparent;
  }

  .menu-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 82vw;
    height: 100%;
  }


  .menu-text {
    transition: ease-in-out 0.3s;
    font-variation-settings: "wght" 150;
    font-family: tiny;
    font-size: 8vw;
    color: white;
    line-height: 1;
    padding-bottom: 1%;
  }

  .menu-text:hover {
    font-variation-settings: "wght" 132;
  }


  

  .mobile-menu {
    display: none;
  }

  h1 {
    font-size: 2vw;
    font-family: clash;
  }

   h2, h3, h4, p {
    font-size: 1.7vw;
    font-family: clash;
    line-height: 110%;
  }

  li,ol {
    font-size: 1.7vw;
    text-align: center;
    list-style-position: inside;
  }


@media (max-width: 900px) {
  .menu-container {
    display: none;
  }
  .mobile-menu {
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 0;
    height: auto;
    z-index: 100;
  }

  .mobile-menu .row:last-child {
    margin-bottom: 0;
  }


  .row {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    margin-bottom: -3%;
  }

  .circle2 {
    flex: 1;
    aspect-ratio: 1 / 1;
    background-color: black;
    border-radius: 50%;
    margin-left: -8%;
    position: relative; /* For z-index */
    z-index: 1;
  }

  .row .circle2:first-child {
    margin-left: 0;
  }


  .menu-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 82vw;
    height: 100%;
  }

  .menu-text {
    /* transition: ease-in-out 0.5s; */
    font-variation-settings: "wght" 150;
    font-family: tiny;
    font-size: 15vw;
    color: white;
    line-height: 0.8;
  }

  .trail-dot {
    display: none;
  }
}