body {
  margin: 0;
  background-color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  color: white;
  font-family: sans-serif;
}

.container {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 100vw;
  max-height: 100vh;
}

img {
  max-width: 100%;
  max-height: 100vh;
  height: auto;
  width: auto;
  flex-shrink: 1;
}

.next-link {
  color: white;
  text-decoration: none;
  font-size: 1.5rem;
  border: 2px solid white;
  padding: 10px 20px;
  border-radius: 8px;
  transition: background 0.3s;
}

.next-link:hover {
  background-color: white;
  color: black;
}

.prev-link {
  color: white;
  text-decoration: none;
  font-size: 1.5rem;
  border: 2px solid white;
  padding: 10px 20px;
  border-radius: 8px;
  margin-right: 20px;
  transition: background 0.3s;
  visibility: hidden; /* Initially hidden, but still takes space */
}

.prev-link:hover {
  background-color: white;
  color: black;
}
