.container {
    display: flex;
    max-width: 100vw;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 20px;
    padding-bottom: 20px;
    /* background: #000; */
    background: none;
  
    }
  
    img {
      width: 450px;
      height: 220px;
      object-fit: cover;
      object-position: center;
      padding: 60px;
      opacity: 1;
  }
  
  img:hover {
      cursor: pointer;
      opacity: 0.7;
      transform: scale(1.05); 
      transform: rotate(-1.2deg) scale(1.05);
      transition: 0.6s ease-out;
      filter: grayscale(0.9);
  }