div.videoFrame{
  display: none;
  margin-top:0;
}

div.youtubeEmbed, div.currentVideo{
  transition:background-color .5s ease-in-out ;
    -webkit-transition:background-color .5s ease-in-out ;
    -moz-transition:background-color .5s ease-in-out ;
}

div.youtubeEmbed:target, div.currentVideo{
  position: fixed;
  left: 0;
  top: 0;
  background-color: rgba(255,255,255,0.7);
  width: 100%;
  height: 100%;
/*  opacity: 0.7;*/
}

div.youtubeEmbed:target div.videoFrame, div.currentVideo div.videoFrame{
  display: block;
  margin-top: 20%;
  margin-left: auto;
  margin-right: auto;
  padding: 5px;
  width: 560px;
  border: solid 1px gray;
  border-radius: 1em;
  background-color: #000000;
  z-index: 999;
  box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.5);
  -webkit-animation:fadeIn .5s;
  animation:fadeIn .5s;

}
@-webkit-keyframes fadeIn {
    from { opacity: 0;
           margin-top:0; }
      to { opacity: 1;
            margin-top:20%; }
}

@keyframes fadeIn {
     from { opacity: 0;
           margin-top:0; }
      to { opacity: 1;
            margin-top:20%; }
}

div.youtubeEmbed:target iframe, div.currentVideo iframe{
  opacity: 1.0;
}

div.youtubeEmbed:target a.viewVideoLink, div.currentVideo a.viewVideoLink{
  display:none;
}

a.closeVideoButton{
  display: block;
  float: right;
  margin-right: -1em;
  margin-top: -1em;
  text-decoration: none;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.75); ;
  color: rgb(255,255,255)!important;
  opacity: 1.0;
  background-color: rgb(157,10,14);
  border:0!important;

  text-align:center;
  border-radius: 20px;
  width:40px;
  height:40px;
  line-height: 40px;
  font-family:'Open Sans', Helvetica, Arial, sans-serif;
  font-size:2em;
  box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.5);
  padding:0!important;
}