

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%;
}

#links{
    width: 100%;
    height: 100%;
}
#links img{
    position: absolute;
    left:50%;
    margin-left: -375px;
    top: 50%;
    margin-top: -161px;
    border: 1px solid #555;
    z-index: 20;

}

#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: 355px;
    margin-top: -200px;
    font-size: 30px;
    z-index: 2;
}

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

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

@font-face {
font-family: FuturThn;
src: url(../assets/FUTURTHN.ttf);
}

h3{
    font-family: FuturThn;
}

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

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