html {
  height: 100%;
}
body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  background-color: white;
  background-image: linear-gradient(
      to right,
      rgba(28, 115, 202, 0.472),
      rgba(152, 26, 211, 0.438)
    ),
    url(img/apple-1302430_1920.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

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

.header2 {
  color: white;
  text-align: center;
  font-size: 90px;
  text-shadow: 5px 5px 5px rgb(0, 0, 0, 0.8);
}

.container {
  position: absolute;
  right: 32px;
  top: 16px;
  font-size: 24px;
}

.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;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 100px;
  padding-left: 16px;
}

.gallery img {
  width: 200px;
  height: 150px;
  object-fit: cover;
  border: 2px solid #ddd;
  border-radius: 5px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.gallery img:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.gallery figcaption {
  color: white;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 5px 10px;
  border-radius: 3px;
  font-size: 18px;
  font-weight: bold;
}

.price {
  color: white;
  background-color: rgba(0, 0, 0, 0.7);
  text-align: center;
  padding: 5px;
  border-radius: 3px;
  font-size: 16px;
  margin-top: 5px;
  font-weight: bold;
}

.script {
  padding: auto;
}
