body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.home-button {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: #000;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
}

.full-screen-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.centered-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 20px 0;
}

.side-images img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 10px;
}

.centered-content video {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .centered-container {
    flex-direction: column;
  }

  .side-images img,
  .centered-content video {
    max-width: 100%;
    margin: 10px 0;
  }
}

.description-border {
  border: 2px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.8);
  margin: 10px;
}

.shop-info {
  text-align: center;
  margin: 20px 0;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 20px;
  border-radius: 10px;
}

.shop-info h2, .shop-info p {
  margin: 10px 0;
}

.shop-images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 20px 0;
}

.shop-images img {
  width: 100%;
  max-width: 325px;
  height: auto;
  border-radius: 10px;
}