body {
    overflow-x: hidden;
    font-family: 'Century Gothic', sans-serif;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

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

/* Holds the displayed photo */
.photoHolder {
    width: 100%;
    text-align: center;
}

/* Style for the photo displayed in the slideshow */
.thumbnail {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    /* Optional: Add shadow here */
}

/* Style for the title/banner */
.banner {
    font-size: 2rem; /* Increased font size for better readability */
    font-weight: bold;
    color: #000000;
    /* 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: 1px dashed #000;
    padding: 15px;
    background-color: #f8f9fa; /* Light background to distinguish from main area */
    border-radius: 4px;
    color: #000000;
    font-size: 1rem; /* Slightly larger text for readability */
}

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

/* Add CSS styles to rotate the element 90deg
Make it animate nicely. You'll need CSS3 for this */
.rot90 {
    /* Add 90-degree rotation */
    transform: rotate(90deg);
    transition: transform 0.3s ease;
}

/* Add CSS styles to rotate the element 180deg
Make it animate nicely. You'll need CSS3 for this */
.rot180 {
    /* Add 180-degree rotation */
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

/* Add CSS styles to rotate the element 270deg
Make it animate nicely. You'll need CSS3 for this */
.rot270 {
    /* Add 270-degree rotation */
    transform: rotate(270deg);
    transition: transform 0.3s ease;
}
