body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-image: url('background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

header {
    background-color: rgba(255, 255, 255, 0.8); /* Leicht transparenter weißer Hintergrund */
    text-align: center;
    padding: 10px 0;
}

#logo {
    width: 100px;
}

main {
    max-width: 800px;
    padding: 20px;
    margin: 20px auto; /* Leichter Abstand vom oberen und unteren Rand */
    background-color: rgba(255, 255, 255, 0.8); /* Leicht transparenter weißer Hintergrund */
    border-radius: 8px; /* Optional: Abgerundete Ecken für das Content-Element */
}

nav a {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: rgba(244, 244, 244, 0.8);
    color: #333;
    text-decoration: none;
    border: 1px solid #333;
    border-radius: 5px;
}

nav a:hover {
    background-color: rgba(224, 224, 224, 0.8);
}

footer {
    text-align: center;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8); /* Leicht transparenter weißer Hintergrund */
}

.footer-link {
    font-size: 0.8em;
    color: #555;
    text-decoration: none;
}

.footer-link:hover {
    color: #333;
}

 .product-image {
       width: 70%;    /* Das Bild nimmt 70% der Breite seines Containers ein */
       height: auto;  /* Höhe passt sich an, um das Seitenverhältnis zu halten */
       display: block;
       margin: 20px auto;
       border-radius: 8px;
       box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
   }

main h2 {
    text-align: center;  /* Zentriert den Text innerhalb des main Bereichs */
    margin-bottom: 20px; /* Fügt einen Abstand unter dem Text hinzu, um ihn visuell vom Bild zu trennen */
}