/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 20; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: visible; /* Enable scroll if needed */
  background-color: rgb(255,255,255); /* Fallback color */
  background-color: rgba(255,255,255,0.5); /* Black w/ opacity */
}

/* Modal Content (Image) */
.modal-content {
  margin-top: 1000px;
  margin-left: 250px;
  margin-right: auto;
  /*margin-bottom: auto;*/
  display: block;
  width: 80%;
  width: 1500px;
  height: 1000px;
}

/* The Close Button */
.modalClose {
  position: absolute;
  top: 1110px;
  left: 1670px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.modalClose:hover,
.modalClose:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

} 