
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;700&display=swap');

html, body{
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  font-family: 'Open Sans', sans-serif;


}

.button {
  display: inline-block;
  font-size: 1em;
  letter-spacing: 0.07em;

  text-transform: uppercase;
  font-weight: 700;
  padding: 0.8em 2em;
  box-sizing: border-box;
  text-decoration: none;
  color: white;
  cursor: pointer;
  border-radius: 60px;
  background-color: #d6075b;
  transition: transform 0.3s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.button:hover {
  transform: scale(1.08);
}



.img-parallax {
  width: 100vmax;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%,0);
  pointer-events: none
}

.min_gallery {
 transition: transform 0.3s ease;
width:  33%;
height:  33%;

}

.min_gallery:hover {
transform: scale(0.99);
}


.gallery_box {

width:  65%;
margin: 0 auto;
padding-bottom: 100px;

}

