/* Allgemeine Stile für den Body */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom, #1a1a1a 0%, #2e00b8 50%, #17cfcf 100%);
}



/* Header-Stile */
header {
    text-align: center;
    background: linear-gradient(to bottom, #2e00b8 0%, #17cfcf 100%);
    border: 10px solid gold;
    border-radius: 20px;
    padding: 10px;
    margin-bottom: 20px;
}

header img {
    width: 750px;
    height: 150px;
    border-radius: 20px;
}

/* Überschriften-Stil */
.heading {
    font-family: 'Arial Black', Arial, sans-serif;
    font-size: 18px;
    font-weight: bold;
    font-style: italic;
    text-align: center;
    border: 2px solid #c00d0d;
    border-radius: 5px; /* Abgerundete Ecken für Überschriften */
    padding: 10px;
    margin-bottom: 20px;
    background: linear-gradient(to right, violet, indigo, blue, green, rgb(190, 190, 38), orange, red);
    color: white; /* Textfarbe für bessere Lesbarkeit */
}

/* Überschrift */
h1 {
    font-size: 2.5em;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    padding: 10px;
    background: linear-gradient(to bottom, #2e00b8 0%, #17cfcf 100%);
    border: 10px solid gold;
    border-radius: 20px;
    width: 850px;
    margin: 40px auto;
}

/* Flexbox-Container */
.container {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Spalten-Stile */
.container {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Spalten-Stile */
.container {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Spalten-Stile */
.column {
    flex: 1; /* Standardbreite für alle Spalten */
    box-sizing: border-box;
    border-radius: 7px;
    padding: 10px;
    background-color: #0c0c0c;
    text-align: center;
}

/* Linke Spalte */
.left-column {
    flex-grow: 3; /* Linke Spalte wächst dreimal so stark */
    background-color: #0c0c0c;
    min-width: 300px; /* Optional: Mindestbreite, um Layout zu stabilisieren */
}

/* Mittlere Spalte */
.middle-column {
    flex-grow: 2; /* Mittlere Spalte wächst weniger stark als die linke */
    background-color: #0c0c0c;
}

/* Rechte Spalte */
.right-column {
    flex-grow: 1; /* Rechte Spalte bleibt am schmalsten */
    background-color: #0c0c0c;
}
/* Gemeinsame Spaltenstile */
.column {
    min-height: 400px;
    background: linear-gradient(to bottom, #3a3a3a 0%, #4e60d8 50%, #2fdfff 100%);
    padding: 20px;
    border: 5px solid gold;
    border-radius: 10px;
}

/* Social Media Icons */
.social-icons {
    text-align: center;
    margin-bottom: 20px;
}

.social-icons a {
    display: inline-block;
    margin: 0 10px;
    color: #ffffff;
    text-decoration: none;
}

.social-icons a img {
    width: 70px;
    height: 70px;
    transition: transform 0.3s;
}

.social-icons a img:hover {
    transform: scale(1.1);
}

/* Navigationselemente */
nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    margin-bottom: 10px;
}

nav ul li a {
    display: block;
    text-align: center;
    padding: 8px 10px;
    background: linear-gradient(to bottom, #2e00b8, #17cfcf);
    color: white;
    font-size: 0.9em;
    text-decoration: none;
    border: 2px solid gold;
    border-radius: 10px;
    transition: background 0.3s, transform 0.3s;
}

nav ul li a:hover {
    background: linear-gradient(to bottom, #17cfcf, #2e00b8);
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        flex-direction: column; /* Spalten untereinander anordnen */
        padding: 10px;
    }

    .column {
        flex-basis: 100%;
        margin: 10px 0;
    }
}