body {
  font-family: Arial, sans-serif;
  text-align: center;
  background-image: url("../img/store_bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  margin: 0;
}

h1 {
  color: #fff;
}

h2 {
  color: #fff;
  margin-top: 30px;
}

.product-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 20px;
}

.product {
  flex-basis: calc(50% - 40px);
  margin: 20px;
  padding: 20px;
  border: 1px solid rgba(0, 0, 0, 0.7);
  border-radius: 5px;
  text-decoration: none;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.7);
  transition: background-color 0.3s ease;
}

.product:hover {
  background-color: rgba(0, 0, 0, 0.9);
}

.product img {
  width: 100px;
  height: 100px;
  margin-bottom: 10px;
}

.product p {
  text-align: left;
}

.product ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-top: 10px;
  color: #fff;
}

.product a.button {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #333;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.product a.button:hover {
  background-color: #666;
}

footer {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 20px;
  color: #fff;
  clear: both;
}

/* Neue Regel für Mobilgeräte */
@media (max-width: 600px) {
  .product-container {
flex-wrap: wrap;
  }
  
  .product {
flex-basis: 100%;
margin: 10px;
  }
}

/* Neue Regel für das Popup-Fenster */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  display: none;
}

.popup {
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  text-align: center;
  max-width: 400px;
}

.popup h2 {
  margin-top: 0;
}

.popup input[type="text"],
.popup select {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

.popup button {
  padding: 10px 20px;
  background-color: #333;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.popup button:hover {
  background-color: #666;
}
	
/* Neue Regel für das Popup-Fenster */
.popup {
  background-color: #1f1f1f;
  padding: 20px;
  border-radius: 5px;
  text-align: center;
  max-width: 400px;
  color: #fff;
}

.popup input[type="text"],
.popup input[type="email"],
.popup select {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  background-color: #333;
  color: #fff;
}