html {
  height: 100%;
}
body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  background-color: white;
  background-image: linear-gradient(
      to right,
      rgba(140, 191, 241, 0.7),
      rgba(204, 131, 238, 0.7)
    ),
    url(img/apple-1302430_1920.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.header1 {
  position: absolute;
  right: 100px;
  top: 50px;
  height: 300px;
  width: 300px;
}

.menu-link {
  color: white;
  text-decoration: none;
  margin-left: 16px;
}

.menu-link:hover {
  text-decoration: underline;
  left: 32px;
  top: 16px;
}

.back-button {
  position: fixed;
  bottom: 10px;
  left: 10px;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 5px;
  font-size: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

.back-button:hover {
  background-color: #0056b3;
}

.product-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 10px;
}
.product-images {
  flex: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.product-images img,
.product-images video {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border: 2px solid #ddd;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.product-images img:hover,
.product-images video:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.product-details {
  flex: 3;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product-title {
  font-size: 40px;
  font-weight: bold;
}
.product-price {
  font-size: 30px;
  color: black;
}
.product-shipping {
  font-size: 25px;
  color: black;
}
.product-description {
  font-size: 20px;
  color: black;
  width: 750px;
}
#paypal-button-container {
  margin-top: 10px;
  background-color: white;
  width: 399px;
}
