

body {
  overflow-x: hidden;
}

.video {
    width: 100%;
  }
  
.img_galery{
  background-size: cover;
  width: 100%;
  height: 100%;
  transition: 300ms;
  display: block;
  transform: scale(1.1);
  overflow: hidden;
  padding: 5em;

}

.img_galery:hover{
  transform: scale(1.4);
}

.img_galery_container{
  overflow: hidden;
  width: 100%;
  height: 100%;
  height: inherit;

}

.img_view{
  cursor: pointer;
}

.img_open{
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.img_content{
  display: block;
  margin: auto;
  padding-top: 12vh;
  width: 50%;
}

.img_open img{
  display: block;
  width: 100%;
  top: 50%;
}

.img_open_closebtn{
  top: 0;
  right: 0;
  position: absolute;
  padding-top: 12vh;
  z-index: 999;
}

.postit h1, .postit p {
  font-size: 1.4em;
  text-align:center;
  margin: 0.5em 0 0;
  line-height:1em;
  font-weight:bold;
}
.postit p {
  font-size:1.1em;
  margin: 0.5em 0;
}
.postit {
  margin:20px;
  padding:25px 15px;
  background:#fefabc;
  background-color: #fefabc;
  background: #fefabc linear-gradient(150deg, #e9e584 0%, #fefabc 100%);
  border: 1px solid #cccccc;
  box-shadow: 0px 2px 5px rgba(0,0,0,0.3);
  transform:rotate(4deg);
  transition: 400ms;
  border-bottom-right-radius: 60px 6px;
}

.postit:hover{
  transform:scale(1.2) rotate(1deg);
  box-shadow: 0px 2px 50px rgba(0,0,0,0.3);
}
.postit::after {
  content:"";
  position: absolute;
  bottom: 0;
  right: -4px;
  width: 100%;
  height: 140px;
  background-image: linear-gradient(173deg, rgba(0,0,0,0) 92%,
  rgba(0,0,0,0.4) 100%);
  transform: rotate(1.5deg);
  z-index: -1;
  filter: blur(5px);
}