.my-modal-data {
  visibility: hidden;
  display: none;
}

#my-modal-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  /* Prevent artifacts in Mozilla Firefox: */
  -moz-backface-visibility: hidden;
  background-color: rgba(0,0,0,0.5);
  z-index: 1000000;
}

#my-modal-content {
  position: fixed;
  top: 100px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  color: #000;
  overflow-y: scroll;
  overflow-x: auto;
  background-color: #fff;
}

#my-modal-title {
  position: fixed;
  right: 0px;
  left: 0px;
  top: 50px;
  height: 50px;
  padding-top: 5px;

  background-color: #444;
  color: #fff;
  
  font-size: 2em;
  font-family: 'Yanone Kaffeesatz', sans-serif;
  text-transform: uppercase;

  text-decoration: none;
  text-shadow: 0 0 2px #000;
  text-align: center;

  z-index: 1000001;
}

#my-modal-close {
  position: fixed;
  right: 35px;
  top: 18px;
  width: 50px;
  height: 50px;
  font-size: 55px;
  font-weight: 100;
  --line-height: 40px;
  color: #E83A00;
  text-decoration: none;
  text-shadow: 0 0 2px #000;
  text-align: center;
  --opacity: 0.5;
  cursor: pointer;
  z-index: 1000002;
}

#my-modal-content h2 {
  text-align: center;
  font-size: 3em;
  color: #fff;
  font-style: italic;
  padding: 0em 0em 1em 0em;
  margin:0px;
}

#my-modal-content h3 {
  font-size: 1.5em;
  color: #888;
  font-family: 'Nobile', sans-serif;
  font-style: italic;
  padding: 0.5em 0em 0.5em 0em;
  text-align: left;
}

#my-modal-content > div {
  padding-bottom: 50px;
  padding-top: 50px;
}

.my-modal-img {
  height: 20em;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: 50% 50%;

  -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.58);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.58);
  box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.58);
  
  border: 0.25em solid #FFF;
  margin-top: 1.5em;
}