body { font-family: Arial, sans-serif; background-color: #000; color: #e0e0e0; margin: 0; padding: 0px; }
        .content_container { max-width: 800px; margin: 1px auto; background-color: #000; padding: 12px; border: 1px solid #000; }
        h1, h2 { color: #00ff66; font-size: 18px; text-transform: uppercase; }
        p { line-height: 1.6; font-size: 18px; }
        .legal_box { margin-top: 20px; padding: 15px; border-left: 3px solid #00ff66; background-color: #000; }
        a { color: #00ccff; text-decoration: none; }
        a:hover { color: #ffffff; }
		
				/* --- Responsive Magie für alle Größen --- */

/* Für sehr kleine Geräte (320px bis 480px) */
@media screen and (max-width: 480px) {
    body {
        padding: 20px 10px;
        font-size: 18px; /* Schrift wächst mit dem Display */
    }
    .content_container {
        width: 90%;
        padding: 15px;
    }
    h1, h2 {
        font-size: 15px;
    }
    .amtsschimmel_img {
        width: 330.5px;
        height: Auto;
        display: block;
        margin-left: -10px;
        margin-bottom: 0px;
        object-fit: cover; /* Sorgt dafür, dass das Bild perfekt im Rahmen sitzt */
    }
}

/* Für mittlere Mobilgeräte/Tablets (481px bis 800px) */
@media screen and (min-width: 481px) and (max-width: 800px) {
    body {
        font-size: 18px;
    }
    h1, h2 {
        font-size: 20px;
    }
    .amtsschimmel_img {
        width: 400px;
        height: Auto;
        display: block;
        margin-left: -20px;
        margin-top: -20px;
        margin-bottom: 0px;
        object-fit: cover; /* Sorgt dafür, dass das Bild perfekt im Rahmen sitzt */
    }
}

/* Für große Bildschirme (über 1400px) - damit es nicht verloren wirkt */
@media screen and (min-width: 1400px) {
    body {
        font-size: 22px;
    }
    .content_container {
        max-width: 590px;
    }
    h1, h2 {
        font-size: 15px;
    }
}

/* Für Mobilgeräte die Links etwas größer machen zum Treffen */
@media screen and (max-width: 600px) {
    a {
        font-size: 24px;
        line-height: 2;
    }
}