.modal-content {
	background: white; 
  border-radius: 15px; 
  padding: 30px 40px 40px; 
  max-width: 500px; 
  margin: 12.5% auto;
  z-index: 1000;
}
.modal-content h2 {
  color: #1e7be4;
  text-decoration: none;
}
.modal-content p {
  color: #414042; 
  font-size: 0.9em;
  text-decoration: none;
}
.modal-content a {
  text-decoration: underline;
  color: #1999d1;
  font-size: 0.75em;
  float: right;
  margin-top: -20px;
  margin-right: -25px;
  cursor: pointer;
}
.modal-content img {
	margin-top: -5px;
}
.lightbox {
	/** Default lightbox to hidden */
  opacity: 0;
  visibility: hidden;
  transition: visibility 0s .3s, opacity .3s ease;

	/** Position and style */
	position: fixed;
	z-index: 999;
	width: 100%;
	height: 100%;
	text-align: center;
	top: 0;
	left: 0;
	background: rgba(0,0,0,0.8);
}
.lightbox:target {
	/** Remove default browser outline */
	outline: none;

	/** Unhide lightbox **/
  visibility: visible;
  opacity: 1;
  transition: opacity .3s linear;
}

