.overlay, #video {
  width:100%;
  height:100%;
}

body {
  margin:0;
  overflow:hidden;
}

a {
  text-decoration:none;
}

#video {
  position:absolute;
  z-index:0;
  top:0;
  left:0;
  height:115%;
  object-fit:cover;
}

.overlay {
  position:absolute;
  top:0;
  left:0;
  z-index:1;
}

.upper-right {
  right:0;
  top:0;
}

.lower-right {
  right:0;
  bottom:0;
}

.upper-left {
  left:0;
  top:0;
}

.lower-left {
  left:0;
  bottom:0;
}

.outer {
  display: table;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.middle {
  display: table-cell;
  vertical-align: middle;
}

.inner {
  margin-left: auto;
  margin-right: auto;
  text-align:center;
  width: auto;
}

.contact-info {
  position:relative;
  z-index:4;
  font-size:70px;
  font-family:'Helvetica';
  font-weight:bold;
  text-align:center;
  color:white;
  text-decoration:none;
}

.coming-soon {
  position:relative;
  z-index:4;
  font-size:90px;
  font-family:'Helvetica';
  font-weight:bold;
  text-align:center;
  color:white;
  vertical-align:middle;
}

.link-text {
  z-index:4;
  position:absolute;
  color:white;
  font-family:'Helvetica';
  font-weight:bold;
  margin:20px;
  font-size:18px;
  text-decoration:none;
}
.link-text:hover, .contact-info:hover {
  color:lightgray;
}

.gallery {
  padding-top:13px;
  z-index:3;
  position:relative;
  overflow: scroll;
  -webkit-overflow-scrolling: touch;
  height: calc(100vh - 13px);
}

.row {
  text-align:center;
  min-height:30%;
}

.thumbnail {
  min-height:25%;
  width:25%;
  margin:10px;
  border-radius:10px;
}
/** LIGHTBOX MARKUP **/

.lightbox {
  /** Default lightbox to hidden */
  display: none;

  /** Position and style */
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100%;
  text-align: center;
  top: 0;
  left: 0;
  background: rgba(0,0,0,0.8);
}

.lightbox img {
  /** Pad the lightbox image */
  max-width: 90%;
  max-height: 80%;
  margin-top: 5%;
}

.lightbox:target {
  /** Remove default browser outline */
  outline: none;

  /** Unhide lightbox **/
  display: block;
}

#mobile img {
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  perspective: 1000;
  -webkit-perspective: 1000;
}

@media (min-width:1000px) {
  #desktop{
    display: block;
  }
  #mobile{
    display: none;
  }
}

@media (max-width:999px) {
  #desktop{
    display: none;
  }
  #mobile{
    display: block;
  }
  .gallery{
    text-align:center;
  }
  .thumbnail{
    width:50%;
  }
  .link-text{
    font-size:35px;
  }
  .lightbox img {
    margin-top: 30%;
  }
  .contact-info{
    font-size:80px;
  }
}
