/* GLOBAL STYLES */
body {
  font-family: Century, serif, sans-serif; /* Added fallback font */
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  text-align: center;
  min-height: 100vh;
  overflow: auto;
}

/* Image container */
.image-container {
  margin: 30px auto;
  padding: 20px;
  text-align: center;
  width: 100%;
  max-width: 100%;
}

/* Image styles */
.zoom-image {
  width: 33%; /* Moved width styling here for consistency */
  margin: 15px;
  max-width: 100%;
  height: auto;
  transition: transform 0.3s ease;
  cursor: pointer;
}

/* Zoom effect on hover */
.zoom-image:hover {
  transform: scale(1.2);
}

/* Tiling background image */
.zoom-page {
  background-image: url('meme-garden/garden-bkg.jpg');
  background-repeat: repeat;
}

/* Centering content */
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
}


.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 10px 15px;
  background-color: #333;
  color: #fff;
  text-decoration: none;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  z-index: 1000; /* Keeps it above other elements */
  cursor: pointer;
  font-family: Arial, sans-serif; /* Or match your page's font */
}

.back-to-top:hover {
  background-color: #555; /* Slightly lighter shade on hover */
}

#return-home {
  position: fixed;
  bottom: 20px; /* Aligns with the bottom */
  left: 20px; /* Floats on the left side */
  padding: 10px 15px;
  background-color: #333;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 14px;
  font-family: Arial, sans-serif; /* Match your page's font */
  z-index: 1000; /* Keeps it on top */
  cursor: pointer;
}

#return-home:hover {
  background-color: #555; /* Lighter shade on hover */
}
