@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;500;700&display=swap');


/*Content Area -----------------------------------------*/

.gallery {
  display: flex;
  margin: 10px 60px;
  flex-wrap: wrap;
  align-items: center;
  text-align: center;
  justify-content: space-evenly;
}
.gallery img {
  transition: 1s;
  padding: 15px;
  width: 250px;
}

.gallery img:hover{
  filter: grayscale(100%);
  transform: scale(1.1);
}

@media only screen and (max-width: 800px) {

  .galler img {
    width: 300px;
  }
}
