body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    background-color: #333;
    color: #fff;
    padding: 20px;
}

#logo {
    max-width: 200px;
}

h2 {
    color: #333;
    margin-top: 40px;
}

section {
    padding: 20px;
    margin: 20px auto;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    text-align: left;
}

section#social-media p,
section#contact p {
    margin: 0;
}

section#social-media a {
    color: #007BFF;
    text-decoration: none;
}

section#social-media a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    padding: 10px;
    background-color: #333;
    color: #fff;
    margin-top: auto;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

#new-releases {
    padding: 20px;
    margin: 20px auto;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    text-align: center;
}

.release-gallery {
    display: flex;
    flex-wrap: wrap; /* Ermöglicht das Umbrechen der Bilder in neue Reihen */
    justify-content: center; /* Zentriert die Bilder */
    gap: 15px; /* Fügt Abstände zwischen den Bildern hinzu */
    max-width: 100%; /* Verhindert, dass der Container die Box sprengt */
}

.release-image {
    flex: 1 1 calc(20% - 15px); /* Bilder haben eine relative Größe und Abstand */
    max-width: 150px; /* Begrenzung der maximalen Breite */
    height: auto;
    border-radius: 8px; /* Optional: Abrundung der Ecken */
}


#featured-images {
    padding: 20px;
    margin: 20px auto;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    text-align: center;
}

.featured-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    margin-top: 10px;
}

.featured-image {
    width: 150px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
}

section h2 {
    text-align: center; /* Überschriften wieder mittig */
}


