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

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

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

.popup h2 {
  margin-top: 0;
  color: #333;
  font-family: Tahoma, Arial, sans-serif;
}

.popup .close {
    line-height: 0.3;
    position: absolute;
    top: 7px;
    right: 5px;
    transition: all 200ms;
    font-size: 35px;
    font-weight: bold;
    text-decoration: none;
    color: #f00;
}

.popup .close:hover {
    color: #06D85F;
}

.popup {
    font-size: 16px;
    max-height: 80%;
    #width: 100%;
    overflow: auto;
}

.content {
    font-size: 20px;
    max-height: 80%;
    width: 100%;
    overflow: auto;
}

.textContainter {
    margin-right: 10px;
    padding-right: 10px;
}

@media only screen
and (max-width: 600px)
{
    .popup {
	width: 100%;
	margin: 0 auto;
    }

}
