body {
  font-family: "Roboto", sans-serif;
  background-color: rgb(254, 231, 216);
  color: #333;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.scaled-logo {
  width: auto;
  height: 60px; /* Angepasste Logo-Höhe */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  text-align: center; /* Zentriert den Inhalt */
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav ul {
  list-style: none;
  padding: 0;
}

nav ul li {
  display: inline-block;
  margin-left: 20px;
}

nav a {
  text-decoration: none;
  color: #333;
  padding: 10px 20px;
  border: 2px solid transparent;
  border-radius: 20px; /* Abgerundete Ecken */
  transition: all 0.3s ease;
}

nav a:hover,
nav a:focus {
  border-color: #333;
}

.animated-figure {
  /* ... */
  border-radius: 50%;
  animation: pulse 5s infinite ease-in-out;
}

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

/* Anpassungen für Responsivität */
@media (max-width: 768px) {
  header,
  nav ul li,
  .quiz-section {
    flex-direction: column;
    text-align: center;
  }
}
