h3 {
  text-align: center;
  font-family: 'Raleway';;
  font-size:18px;
  padding-bottom:10px;
  font-weight:700;
  /*color: #06D85F;
  margin: 80px 0;*/
}

.box {
  width: 40%;
 height:100%;
  margin: 0 auto;
  background: rgba(255,255,255,0.2);
  padding: 0px;
  border: 2px solid #fff;
  border-radius: 20px/50px;
  background-clip: padding-box;
  text-align: center;

}
.overlay {
  position: fixed;
  top: 0;
  bottom: 0px;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
}
.overlay:target {
  visibility: visible;
  opacity: 1;
  z-index:999999999999; /*avedatmuthafucka*/
}

.popup_info {
  margin: 15px auto;
  padding: 5px;
  background: #000000;
  border-radius: 5px;
  /*width: 65%;*/
  width: 300px;
  height: 450px;
 
  position: relative;
  transition: all 5s ease-in-out;
  
}

.popup_info h2 {
  margin-top: 0;
  color: #333;
  font-family: Tahoma, Arial, sans-serif;
}
.popup_info .close_popup {
  position: absolute;
  top: 2px;
  right: 30px;
  transition: all 200ms;
  font-size: 35px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}
.popup_info .close_popup:hover {
  color: #06D85F;
}


