.comp {
  font-family: 'Tangerine', serif;
  font-size: 30px;
  
}

.notice {
  background-color: #fffbea;
  border-left: 5px solid #facc15;
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: #92400e;
  border-radius: 0.5rem;
  max-width: 600px;
  margin: 2rem auto;
}

.pulse {
  font-size: 1.0rem;
  font-weight: 600;
  color: #b91c1c; /* warmes Rot, anpassbar */
  animation: pulse 3s ease-in-out infinite;
}

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