.image-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.image-gallery img {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
    object-fit: cover;
}
body {
    
    flex-direction: column;
    
}
h1 {
    text-align: center;
    font-size: 3rem;
    font-family: "Micro 5", sans-serif;
    margin: 50px;
}
.image-gallery a {
    position: relative;
    display: inline-block;
    width: 250px; 
    height: 250px;
    margin: 10px;
    text-align: center;
}
.image-gallery a span {
    position: absolute;
    bottom: 40%;
    left: 0;
    right: 0;
    color: white;
    font-size: 30px;
    background-color: rgba(37, 25, 25, 0.438);
    opacity: 0;
    padding: 5px;
    transition: opacity 0.3s ease;
    z-index: 1; 
}
.image-gallery a:hover img {
    transform: scale(1.3); 
}
.image-gallery a:hover span {
    opacity: 1; 

}