/* ===================================== */
/* 🌍 Allgemeine Einstellungen           */
/* ===================================== */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 40px;
    line-height: 1.6;
}

/* ===================================== */
/* 🔝 Überschrift Design                */
/* ===================================== */
h1 {
    color: #222;
    font-size: 2rem;
    border-bottom: 3px solid #555;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

/* ===================================== */
/* 📄 Textabsätze Design               */
/* ===================================== */
p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #555;
}

/* ===================================== */
/* 🔗 Links Design                      */
/* ===================================== */
a {
    color: #0066cc;
    text-decoration: none;
    font-weight: bold;
    padding: 5px;
    border-radius: 5px;
    transition: 0.3s;
    background-color: #f4f4f4; /* sanfter Hintergrund */
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
}

/* ===================================== */
/* 🌟 Hover-Effekt für Links           */
/* ===================================== */
a:hover {
    color: #fff;
    background-color: #0066cc; /* Dunklerer Hintergrund bei Hover */
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
}

/* ===================================== */
/* 🎨 Hintergrund für den Inhalt       */
/* ===================================== */
.content {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* ===================================== */
/* 🖋 Text und Link Stil für bessere Lesbarkeit */
.footer {
    background-color: #333;
    color: #ccc;
    text-align: center;
    padding: 15px;
    margin-top: 30px;
}

.footer a {
    color: #ccc;
    text-decoration: none;
}

.footer a:hover {
    color: #fff;
    text-decoration: underline;
}

/* ===================================== */
/* 🔄 Responsives Design (Für Mobilgeräte) */
/* ===================================== */
@media (max-width: 768px) {
    body {
        padding: 20px;
    }
    .content {
        padding: 15px;
    }
}
