.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  opacity: 0;
  z-index: 9999;
  visibility: hidden;
}

.overlay:target {
  visibility: visible;
  opacity: 1;
}

.popup {
  margin: 70px auto;
  padding: 20px;
  background: #fff;
  border-radius: 5px;
  width: 50%;
  position: relative;
  transition: all 500ms ease-in-out;
}

.popup h3 {
  margin-top: 0;
  color: #990000;
  font-family: Verdana;
}

.popup .close {
  position: absolute;
  top: 10px;
  right: 20px;
  transition: all 200ms;
  font-size: 40px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}

.popup .close:hover {
  color: #CC0000;
}

.popup .content {
  max-height: 50%;
  overflow: auto;
  font-family: Verdana;
  font-size: 10pt;
  font-weight: bold;
}

@media screen and (max-width: 700px) {
  .popup {
    width: 70%;
  }
}
