body {
  margin: 0;
  font-family: "Anonymous Pro", monospace;
  font-weight: 700;
  font-style: normal;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  background-color: #ffffff;
  color: #1b1b1a;
  animation: fadeIn 1s ease-in-out;
  z-index: 0;
  padding-bottom: 10%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Aladin", system-ui, sans-serif;
}
#player,
#player video {
  border-radius: 18px;
  overflow: hidden;
  display: block;
}
#player .clappr-player {
  border-radius: 18px;
  overflow: hidden;
}
select {
  padding: 2px;
  border-radius: 8px;  
  font-family: "Google Sans Code", monospace;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;  
  margin-top: 10px;
  width: 20vw;
  height: 30px;
  font-family: monospace;
  font-style: bold;
}

textarea {
  width: 95%;
  padding: 10px;
  margin-bottom: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
}

#antwort-button {
  width: 100%;
  padding: 12px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  margin-bottom: 10px;
}

header {
  font-family: "Aladin", system-ui;
  background: #ffffff;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 1) 0%,
    rgb(224, 242, 255) 95%,
    rgba(255, 255, 255, 1) 99%
  );
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  /* background-color: #1B1B1b; */
  color: #000000;
  text-align: center;
  padding: 20px 0;
  position: sticky;
  top: 0%;
  width: 100vw;
  animation: fadeIn 4s ease-in-out;
  z-index: 1000;
}

main {
  padding: 20px;
  width: 90vw;
  margin: 0 auto;
  background-color: ffffff;
  animation: fadeIn 1s ease-in-out, slideIn 1s ease-in-out,
    bounce 5s linear 5s infinite;
  z-index: 2;
}

footer {
  font-family: "Aladin", system-ui;
  background: #ffffff;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 1) 0%,
    rgb(224, 242, 255) 95%,
    rgba(255, 255, 255, 1) 99%
  );
  color: #000000;
  text-align: center;
  padding: 10px 0;
  position: fixed;
  width: 100vw;
  bottom: 0;

  animation: fadeIn 3s ease-in-out;
}

#canvas {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -5;
  /* Canvas hinter den Inhalten */
  width: 100vw;
  height: 100vw;
  animation: fadingIn 5s ease-in-out, fadingOut 5s ease-in-out infinite;
}

#canvas_bottom {
  position: fixed;
  bottom: 0%;
  left: 0;
  z-index: 2;
  /* Canvas hinter den Inhalten */

  height: 10vw;
}

/* FadeIn */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fade-in {
  animation: fadeIn 1s ease-in-out;
}

/* FadeOut */
@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadingIn {
  from {
    opacity: 0.1;
  }

  to {
    opacity: 0.2;
  }
}

@keyframes fadingOut {
  from {
    opacity: 0.2;
  }

  to {
    opacity: 0.1;
  }
}

.fade-out {
  animation: fadeOut 1s ease-in-out;
}

@keyframes zoomIn {
  from {
    transform: scale(0);
  }

  to {
    transform: scale(1);
  }
}

@keyframes zoomOut {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(0);
  }
}

@keyframes slideIn {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes slideOut {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(100%);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.3);
  }
}

@keyframes pulse_pic {
  0%,
  100% {
    transform: scale(0.8);
  }

  50% {
    transform: scale(1.1);
  }
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-10px);
  }

  75% {
    transform: translateX(10px);
  }
}

.round-image {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  /* Macht das Bild rund */
  object-fit: cover;
  /* Verhindert Verzerrungen */
  border: 0px solid #333;
  /* Optional: Rahmen */
  animation: pulse_pic 5s ease-in-out infinite;
  animation: fadeIn 1s ease-in-out, slideIn 1s ease-in-out, linear 20s infinite;
}

.styled-button {
  background-color: #007bff;
  /* Primärfarbe */
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  /* Abgerundete Ecken */
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  /* Schatten */
}

.styled-button:hover {
  background-color: #0056b3;
  /* Dunklere Farbe beim Hover */
  transform: translateY(-2px);
  /* Leichter Effekt beim Hover */
}

.styled-button:active {
  background-color: #004080;
  /* Noch dunklere Farbe beim Klicken */
  transform: translateY(0);
  /* Zurück zur ursprünglichen Position */
}

.styled-button:focus {
  outline: none;
  /* Entfernt den Standard-Focus-Rahmen */
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.5);
  /* Custom Focus-Ring */
}

a:link {
  color: #000000;
  color: #000022;
  /* Farbe für nicht besuchte Links */
  text-decoration: bold;

  /* Unterstreichung entfernen */
}

a:visited {
  color: #000022;
  /* Farbe für besuchte Links */
  text-decoration: bold;
  /* Unterstreichung entfernen */
}

a:hover {
  color: #0056b3;
  /* Farbe beim Hover */
  /* Unterstreichung beim Hover */
}

a:active {
  color: #004080;
  /* Farbe beim Klicken */
}

.gc {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.gi {
  font-family: "Xanh Mono", monospace;
  font-weight: 400;
  font-style: italic;
  padding: 20px;
}