/* style.css */

/* Gesamte Seite */
body {
    background-color: #f0f8ff;
    /* AliceBlue */
    color: #003366;
    /* Dunkles Blau, passt gut zu AliceBlue */
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 1rem;
}

/* Hauptüberschrift */
h1 {
    color: #006699;
    /* Mittelblau – Kontrast, aber harmonisch */
}

.bands {
    color: #ed11a8;
}

h2 {
    color: #ff0000;
}

h2 {
    color: #84c1ed;
}

li#haupthobby {
    list-style-type: square;
    font-weight: bold;
}

li.hobby {
    list-style-type: circle;
    font-style: italic;
}

/* Bilder */
img {
    border: 3px solid #006699;
    /* passendes Mittelblau zum Design */
    max-width: 100%;
    /* sorgt dafür, dass es nicht aus dem Layout ragt */
    height: auto;
}

p {
    color: grey;
    font-weight: bold;
}
