@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@1,900&display=swap");
/* titles h2  */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h2 {
  margin: 30px;
  color: hsl(0, 2%, 81%);
  font-family: "Lato", sans-serif;
  font-size: 28px;
  text-transform: uppercase;
  text-align: center;
}

.gallery-img {
  display: flex;
  flex-direction: row;
  justify-content: center;
  background: #212529;
  /* margin: 0 auto;
  width: 100%; */
}

.img-tamanho {
  padding-right: 840px;
}

.gallery-img a {
  text-decoration: none;
  margin: -4px 0px;
}

.gallery-img img {
  border-radius: 3px;
  margin: 10px;
  border: 2px solid #fff;
  transition: 1s;
  width: 400px;
  height: 400px;
}

.gallery-img img:hover {
  transition: 0.8s;
  -webkit-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
}

@media (max-width: 1100px) {
  .gallery-img {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 95%;
    margin: 0 auto;
  }

  .gallery-img img {
    margin: 10px 0px;
    width: 400px;
    height: 300px;
  }

  .img-tamanho {
    padding-right: 0px;
  }
}

@media (max-width: 768px) {
  .gallery-img {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 95%;
    margin: 0 auto;
  }

  .gallery-img img {
    width: 100%;
    height: 300px;
  }

  .img-tamanho {
    padding-right: 0px;
  }
}
