body {
    background-color: black; /* Dark gray background */
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;

}

.gallery {

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;


}
.gallery img {
    max-width: 80%; /* Ensure images fit within the container */
    padding: 10px;
}
