.popup-overlay {
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 11111;
  top: 0;
  left: 0;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0, 0.9);
}

.popup-overlay-content {
  position: relative;
  top: 25%;
  width: 100%;
  text-align: center;
  margin-top: 30px;
}

.popup-overlay a {
  padding: 8px;
  text-decoration: none;
  font-size: 36px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.popup-overlay a:hover, .popup-overlay a:focus {
  color: #f1f1f1;
}

.popup-overlay .closebtn {
  position: absolute;
  top: 5%;
  right: 20%;
  font-size: 60px;
}