body, html { 
    overflow-x: hidden; 
    overflow-y: hidden;
}

#background {
    position: absolute;
    display: flex;
    width: 100%;
    bottom: -10px;
    justify-content: center;
    opacity: .1;
    z-index: 1;
}

#video {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  z-index: -100;
}

#video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (min-aspect-ratio: 16/9) {
  #video video {
    height: 300%;
    top: -100%;
  }
}

#lightbox{

    position: absolute;
    left: 0px;
    top: 0px;
    height:100%;
    width:100%;
    background-color: #111;
    opacity: .4;
}
#close{
    font-family: Arial;
    color: white;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: 10em;
    margin-top: -6.5em;
    font-size: 30px;
    z-index: 2;
}

#backdrop{
    position: absolute;
    height: 20em;
    width: 40em;
    left: 50%;
    top: 50%;
    margin-left: -20em;
    margin-top: -10em;
    padding-top: -20em;
    background-color: #fff;
    opacity: .8;
    
}
#content{
    position: absolute;
    font-family: Futura, sans-serif;
    height: 20em;
    width: 40em;
    left: 50%;
    top: 50%;
    margin-left: -20em;
    margin-top: -10em;
    padding-top: -20em;
    background-color: #fff;
    z-index: 2;
    border: 2px solid #555;
}
#content img {
    position: absolute;
    width: 50%;
    right: 0px;
}

#content table{
    width: 45%;
    margin: 15px;
    text-align: right;
    font-family: Futura, sans-serif;
    font-size: 13px;
    line-height: 1.5;
    font-weight: normal;    
}

#content table td{
    background-color: black;
    color: white;
    text-align: center;
    text-transform:uppercase;
    letter-spacing: 2px;
    line-height: 36px;
    
}

a:link{
    text-decoration: none;
    color:#E8E8E8;
}
a:visited{
    color:#E8E8E8;
}

a:hover{
    text-decoration: none;
    color: #fff;
}

@media (min-aspect-ratio: 16/9) {
  #video video {
    height: 300%;
    top: -100%;
  }
}

@media (max-aspect-ratio: 16/9) {
  #video video {
    width: 320%;
    left: -100%;
  }
}