body {
    background-color: #a1baf8;
  }
  
  h1 {
    text-align: center;
    font-size: 2.5rem;
    color: Black;
    margin: 50px 0 50px;
  }
  
  .gallery {
    margin: 10px 50px;
    text-align: center;
  }
  
  .gallery img {
    width: 380px;
    height: 220px;
    padding: 10px;
    object-fit: cover;
    filter: grayscale(100%);
    transition: 0.7s;
  }
  
  .gallery img:hover {
    filter: grayscale(0);
    transform: scale(1.1);
  }