body {
  font-family: "Century Gothic", sans-serif;
  background-image: url("img/bg.jpg");
  background-size: cover;
}

/* Main container for the slideshow and metadata */
#photoBooth {
  padding: 3vw 5vw; /* Increased padding for better spacing */
  max-width: 50vw; /* Increased max-width for larger display */
  width: 90%; /* Keeps width responsive */
  margin: auto;
  background-color: rgba(102, 102, 102, 0.9);
  border-radius: 8px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); /* Optional: Add shadow */
  border: 0.5vw double #333;
}

/* Holds the displayed photo */
.photoHolder {
  width: 100%;
  text-align: center;
  height: 390px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 4px;
}

/* Style for the photo displayed in the slideshow */
.thumbnail {
  max-width: 100%;
  border-radius: 4px;
  width: 100%;
  height: 100%;
  object-fit: contain; /* preserves aspect ratio, fits inside the box */
  border-radius: 4px;
  transition: opacity 0.5s ease-in-out;
}

/* Style for the title/banner */
.banner {
  font-size: 2rem; /* Increased font size for better readability */
  font-weight: bold;
  color: white;
  /* Optional: Customize the text color */
}

/* Style for the 'More Content' indicator */
.moreIndicator {
  height: 50px; /* Adjust size for a balanced look */
  width: 50px;
  cursor: pointer;
  transition: transform 0.3s ease; /* Smooth rotation transition */
  /* Add initial rotation styling here */
}

/* Navigation button styles */
#nav img {
  height: 50px; /* Adjust button size for responsiveness */
  width: 50px;
  cursor: pointer;
  transition: opacity 0.3s; /* Optional: Add hover effect */
}

/* Metadata container styling */
.details {
  border: 0.3vw double #666;
  padding: 15px;
  background-color: #333; /* Light background to distinguish from main area */
  border-radius: 4px;
  color: white;
  font-size: 1rem; /* Slightly larger text for readability */
}

/* Style for each paragraph in details */
.details p {
  margin: 10px 0;
}

.rot90 {
  transform: rotate(90deg);
  transition: transform 0.5s ease-in-out;
}
.rot180 {
  transform: rotate(180deg);
  transition: transform 0.5s ease-in-out;
}
.rot270 {
  transform: rotate(270deg);
  transition: transform 0.5s ease-in-out;
}
.size {
  height: 100vh;
  width: 100vw;
}