h1 {
    text-align: center;
    font-size: 3rem;
    font-family: "Micro 5", sans-serif;
    margin: 50px;
}

.image-gallery {
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    justify-content: center;

}

.image-gallery img {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
    object-fit: cover;
}
body {
    
    
    flex-direction: column;
    
    
}
.image-gallery a {
    position: relative;
    display: inline-block;
    width: 200px; 
    height: 200px;
    text-align: center;
margin: 10px;
}
.image-gallery a span {
    position: absolute;
    bottom: 10%;
    left: 0;
    right: 0;
    color: rgb(0, 0, 0);
    font-size: 30px;
    font-family: "Micro 5", sans-serif;
    background-color: rgba(255, 254, 254, 0.322);
    opacity: 0;
    padding: 5px;
    transition: opacity 0.3s ease;
    z-index: 1; 
}
.image-gallery a:hover img {
    transform: scale(1.2); 
   
}
.image-gallery a:hover span {
    opacity: 1; 
    
}

