body {
  margin: 0;
  font-family: "Trebuchet MS", sans-serif;
  background-color: rgb(227, 227, 227);
}

header {
  width: 100%;
  background-color: #333;
  color: white;
  text-align: center;
  padding: 10px 0;
}

header h1 {
  margin: 0;
  font-size: 24px;
}

footer {
  width: 100%;
  background-color: #333;
  color: white;
  text-align: center;
  padding: 10px 0;
}

.gallery {
  padding: 10px 0; /* Adjust to prevent header from covering the images */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.image-container {
  margin: 10px 0; /* Small break between images */
  display: flex;
  justify-content: center;
  align-items: center; /* Make sure each image fits the viewport height */
}

.image-container img {
  width: 95vh; /* Slightly smaller than the viewport */
  max-height: 90vh;
  object-fit: contain;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
  .image-container {
    margin: 15px 0;
  }

  .image-container img {
    margin: 0 15px;
    width: calc(100% - 30px); /* Adjust image width for small screens */
  }
}

.whatsapp-button {
  position: relative;
  bottom: 20px;
  right: 20px;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px; /* Adjust based on icon size plus 20% */
  height: 60px; /* Adjust based on icon size plus 20% */
  background-color: rgb(37, 211, 102);
  border-radius: 50%;
}

.whatsapp-button img {
  width: 35px;
  height: 35px;
  margin-left: 2px;
  margin-top: 1px;
}
footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 20px 0;
}

footer p {
  margin: 5px 0;
  margin-left: 10px;
  text-align: left;
}

footer p span {
  text-align: center;
}

footer a {
  color: #0f0; /* Green color for WhatsApp links */
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

.footertop {
  text-align: center;
  margin: 0px;
}
