body {
    font-family: 'Comic Sans MS', cursive, sans-serif; /* Comic-Schriftart für ein kinderfreundliches Aussehen */
    background-color: #a2d9ce; /* Hellen, freundlichen Hintergrund setzen */
    color: #5d4037; /* Farbe für den Text */
    text-align: center;
    margin: 0;
    padding: 20px;
}

#app {
    max-width: 600px; /* Maximale Breite für größere Bildschirme */
    margin: auto;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

h1 {
    color: #ff5722; /* Farbe für Überschriften, inspiriert von Bibi & Tinas Liebe zu Pferden */
}

button {
    background-color: #ff9800; /* Lebendige Button-Farbe */
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    margin-top: 20px;
}

button:disabled {
    background-color: #ccc;
}

#dailyReward p,
#story p {
    margin: 15px 0;
    line-height: 1.6;
}

@media screen and (max-width: 768px) { /* Anpassungen für Mobilgeräte */
    body {
        padding: 10px;
    }

    #app {
        padding: 10px;
    }

    button {
        width: 100%;
    }
}

img {
    width: 100%;
}

p {
    border-top: 1px solid gray;
}

p:first-child {
    border-top: none;
}