@import url("https://fonts.googleapis.com/css2?family=Abhaya+Libre:wght@400;800&family=Poppins:wght@500;700;800&display=swap");

html,
body {
  padding: 0;
  margin: 0;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    Segoe UI,
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    Fira Sans,
    Droid Sans,
    Helvetica Neue,
    sans-serif;
}

canvas {
  display: block;
}

#typo {
  position: fixed;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 900px;
  pointer-events: none;
  z-index: 5;
}

#typo img {
  width: 100%;
  height: auto;
  display: block;
}

/* Play button — centered above typo, positioned by JS */
.audiohintergrund_wrapper {
  z-index: 20;
  position: fixed;
  bottom: 0; /* overridden by JS */
  padding-bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  cursor: pointer;
  background-color: transparent;
  fill: rgb(229, 30, 37);
}

.audiohintergrund_wrapper:hover {
  fill: white;
}

.audiohintergrund_wrapper svg {
  width: 100%;
  height: 100%;
}

/* Contact — fixed bottom left */
.contact {
  position: fixed;
  top: 2rem;
  left: 2rem;
  z-index: 10;
  font-size: 2rem;
  color: rgb(254, 1, 1);
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  line-height: 2.5rem;
}

.contact .concert {
  /* font-size: 1.5rem;
  line-height: 1.5rem;
  margin-bottom: 0.5rem; */
  text-shadow:
    0 0 8px #fff,
    0 0 20px #fff;
}

.contact .links {
}

.contact a {
  text-decoration: none;
  color: inherit;
}

.contact a:hover {
  color: rgb(0, 0, 0);
}

/* Socials bar — bottom center, above typo, positioned by JS */
.socials {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding-bottom: 1rem;
  text-shadow:
    0 0 8px #fff,
    0 0 20px #fff;
}

.socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: red;
  transition: color 0.2s;
}

.socials a:hover {
  color: white;
}

.socials svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

@media (max-width: 600px) {
  .audiohintergrund_wrapper {
    width: 60px;
    height: 60px;
  }

  .contact {
    font-size: 1.5rem;
    line-height: 1.5rem;
  }
}
