/* The popup form - hidden by default */
.popup {
  z-index: 100; /* Higher than the overlay */
  width: 500px;
  background: #fef;
  border-radius: 6px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%,-50%) scale(0.1);
  text-align: center;
  padding: 20px 50px 50px;
  color: #333;
  visibility: hidden;
}

.openpopup {
  visibility: visible;
  top: 60%;
  transform: translate(-50%,-50%) scale(1);
  transition: transform 0.5s, top 0.5s;
}

.popup p{
  font-size: 25px;
}

.closebtn {
  position: absolute;
  bottom: 20px;
  left: 80%;
  background-color: Green;
  color: white;
  font-size: 15px;
  padding: 6px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
}

.closebtn:hover {
  background-color: #059862;
}