body {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* Startet die Ausrichtung von oben */
    background: linear-gradient(45deg, #ff9a9e, #fad0c4, #fbc2eb);
    animation: colorShift 10s ease infinite;
    background-size: 300% 300%;
    min-height: 100vh;
}

h1 {
    font-size: 2.5rem;
    color: white;
    margin: 1rem 0;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

/* Grid für die Karten */

p.tight {
  margin: 0.5rem 0;
}

p.tight.small-space {
  margin-top: 0.2rem;
}
.centered {
  text-align: center;
  margin: 0.3rem 0;
  font-size: 1rem;  
}

/* Farbwechsel-Hintergrund */
@keyframes colorShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
/* Für Geräte mit einer Breite von maximal 768px */
@media (max-width: 768px) {


    h1 {
        font-size: 2rem; /* Kleinere Schriftgröße für die Überschrift */
        margin-bottom: 1.5rem;
    }

p.tight {
  margin: 0.5rem 0;
}

p.tight.small-space {
  margin-top: 0.2rem;
}

}
	
