* {
  margin: 0;
  padding: 0;
  background: #000;
  color: #fff;
}
.title h1 {
  margin-top: 100px;
  margin-left: 150px;
}
.title p {
  margin-top: 20px;
  margin-left: 150px;
  margin-right: 130px;
  font-size: 22px;
}
.img-gallary {
  width: 80%;
  margin: 40px auto 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 30px;
}
.img-gallary img {
  width: 100%;
  cursor: pointer;
}
.img-gallary img:hover {
  transform: scale(0.8) rotate(-15deg);
  border-radius: 20px;
  box-shadow: 0 32px 7px rgba(68, 75, 136, 0.2);
}
.full-img {
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
}
.full-img img {
  width: 50%;
  min-width: 500px;
}
.full-img span {
  position: fixed;
  top: 5%;
  right: 5%;
  font-size: 30px;
  color: white;
  cursor: pointer;
}
@media screen and (max-width: 600px) {
  .title h1 {
    margin-top: 50px;
    margin-left: 50px;
  }
  .title p {
    margin-top: 20px;
    margin-left: 50px;
    margin-right: 70px;
    font-size: 18px;
  }
}
