.wrapper {
  position: relative;
  min-height: 100vh;
  background-image: url(../add/img/1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0 60%;
  overflow: hidden;
}
.wrapper .int-1 {
  height: 200px;
  width: 300px;
  background-image: url(../add/img/photo_1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0 60%;
  clip-path: polygon(9% 72%, 14% 65%, 8% 44%, 19% 36%, 28% 25%, 41% 21%, 59% 25%, 71% 16%, 87% 33%, 90% 46%, 92% 67%, 88% 83%, 68% 91%, 58% 95%, 32% 98%, 15% 89%);
  position: absolute;
  top: 4%;
  right: 3%;
  transform: rotate(10deg);
  box-shadow: inset 0 0 60px 60px black;
  transition: transform 1s ease-in-out;
}
.wrapper .int-1:hover {
  clip-path: none;
  box-shadow: none;
  transform: scale(1.4) rotate(20deg);
  box-shadow: 0 0 60px 60px white;
}
.wrapper .int-2 {
  height: 267px;
  width: 400px;
  background-image: url(../add/img/photo_2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0 60%;
  clip-path: polygon(9% 72%, 14% 65%, 8% 44%, 19% 36%, 28% 25%, 41% 21%, 59% 25%, 71% 16%, 87% 33%, 90% 46%, 92% 67%, 88% 83%, 68% 91%, 58% 95%, 32% 98%, 15% 89%);
  position: absolute;
  top: 5%;
  left: 4%;
  transform: rotate(-10deg);
  box-shadow: inset 0 0 50px 50px black;
  transition: transform 1s ease-in-out;
}
.wrapper .int-2:hover {
  clip-path: none;
  box-shadow: none;
  transform: scale(1.5) rotate(10deg);
  box-shadow: 0 0 60px 60px white;
}
.wrapper .my-button {
  width: 600px;
  height: 100px;
  border-radius: 10px;
  background-image: linear-gradient(to top right, lightskyblue, white);
  border: 5px solid lightskyblue;
  position: fixed;
  top: -80px;
  left: 0;
  right: 0;
  margin: 0 auto;
  transition: top 1s ease-in-out;
}
.wrapper .my-button:hover {
  top: -6px;
}

/*# sourceMappingURL=style.css.map */
