* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
}

html {
  scroll-behavior: smooth;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #333;
}

.navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.navbar li {
    padding: 0 15px;
}

.navbar a {
    color: white;
    text-decoration: none;
}

.header-image {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
}

.content-section {
    padding: 20px;
    background-color: #f4f4f4;
}

.content-section:nth-child(even) {
    background-color: #ddd;
}

.products .product-list {
    display: flex;
    justify-content: space-around;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
}

@media (max-width: 768px) {
    .toggle-menu {
        display: block;
    }

    .navigation {
        display: none;
    }

    .product-list {
        flex-direction: column;
    }
}
.products-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
}

.product {
    flex-basis: calc(33.333% - 20px);
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    margin: 10px;
    padding: 20px;
    text-align: center;
}

.product img {
    max-width: 100%;
    height: auto;
}
.modal {
  display: none; /* Versteckt das Modalfenster standardmäßig */
  position: fixed; /* Bleibt an der gleichen Stelle, auch beim Scrollen */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5); /* Schwarz mit Transparenz */
  z-index: 1; /* Stellt sicher, dass das Modalfenster über anderen Elementen angezeigt wird */
}

.modal-content {
  background-color: #dcad6a;
  margin: 15% auto; /* Zentriert das Modalfenster */
  padding: 20px;
  border-radius: 5px;
  width: 80%; /* Breite des Modalfensters */
  max-width: 600px; /* Maximale Breite */
}

.btn {
  padding: 10px 20px;
  cursor: pointer;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  margin: 10px;
}

.accept {
  background-color: #4CAF50; /* Grüne Farbe */
  color: white;
}

.decline {
  background-color: #f44336; /* Rote Farbe */
  color: white;
}
