html,
body {
  margin: 0;
  padding: 0;
  background-color: black;
}

body {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

#progress {
  height: 2px;
  background: #be1212;
  position: absolute;
  top: 1%;
  opacity: 1;
  z-index: 2;
  -webkit-transition: width 0.2s ease;
  transition: width 0.2s ease;
}

#cover {
  opacity: 50%;
}

#gallery {
  margin: 0;
  position: absolute;
  width: 100vw;
  height: 100vh;
}

img,
video {
  width: 100%;
  position: absolute;
}

.fadeOut {
  opacity: 0 !important;
  -webkit-transition: opacity 1s !important;
  transition: opacity 1s !important;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
/*# sourceMappingURL=main.css.map */