.popup-wrap {
  position: fixed;
  width:100%;
  height:100%;
  display:none;
  top:0px;
  left:0px;
  background:rgba(0,0,0,0.85);
}

.popup-box {
  display: block;
  background-color: #f39543;
  padding:15px;
  position: absolute;
  top:50%;
  left:50%;
  border: #6a007e solid 15px;
  border-radius:3px;
  text-align:center;

}


 

.popup-close {
  top: 0px;
  right: 0px;
  color: #fff;
  line-height: 10px;
  font-size: 10px;
  text-decoration: none;
  position: absolute;
  padding: 10px 15px;
  background: red;
  border-radius: 100%;
}


.button{
  background-color: #6a007e;
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 5px;
}


.transform-in, .transform-out {
  display:block;
  -webkit-transition:all ease 0.5s;
  transition:all ease 0.5s;
}

.transform-in {
	-webkit-transform:translate(-50%, -50%) scale(1);
	transform:translate(-50%, -50%) scale(1);
}

.transform-out {
	-webkit-transform:translate(-50%, -50%) scale(0.5);
	transform:translate(-50%, -50%) scale(0.5);
}





* {
  box-sizing: border-box;
}

/* Create two equal columns that floats next to each other */
.column {
  float: left;
  width: 50%;
  padding: 10px;

}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: grid;
  clear: both;
}


#foto{
  margin: 0 auto;
  max-width: 100%;

}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    width: 100%;
  }
}