html,
body,
.viewport {
  width: 100%;
  height: 100%;
  margin: 0;
}

/* Set the background color to black */
body {
  background-color: black;
  margin: 0;
}

/* Set the video to cover the entire screen */
video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 999;
}

@media all and (max-width: 992px) {
  .hide-on-mobile {
    display: none !important;
  }
}
@media all and (min-width: 992px) {
  .hide-on-desktop {
    display: none !important;
  }
}

.flex-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

#flex-item {
  text-align: center;
  margin: auto;
}

#splash {
  display: flex;
  justify-content: center;
  align-items: center;
}