/* Basic reset and body settings for a dark theme */
body, html {
    margin: 0;
    padding: 0;
    background-color: #121212; /* Dark background */
    color: #ffffff; /* Light text */
    font-family: Arial, sans-serif;
}

h1 {
    text-align: center;
    margin-top: 20px;
    color: #ffcc00; /* Accent color */
}

/* Styling for the gallery container */
.gallery {
    width: 90%;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px; /* space between images */
    padding: 20px;
}

/* Responsive images */
.gallery img {
    width: 100%; /* Make images responsive */
    max-width: 900px; /* Maximum size */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for zoom and shadow */
    cursor: pointer; /* Indicates that an image can be clicked */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.6); /* Subtle shadow for depth */
}

.gallery img:hover {
    transform: scale(1.05); /* Slight zoom on hover */
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.8); /* Larger shadow on hover for a lifting effect */
}

/* Overlay for full image view */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.full-img {
    height: auto;
    max-height: 80%; /* Adjusts to screen height */
    max-width: 90%; /* Adjusts to screen width */
}
