.loading-screen {
  position: fixed;
  width: 100vw;
  height: 100vh;
  display: flex;
  overflow: hidden;
  justify-content: center;
  z-index: 100;
}

.loading-screen .loading-screen-wrapper {
  background: #000;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.loading-screen .loading-screen-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media only screen and (orientation: portrait) {
  .loading-screen .loading-screen-video {
    object-fit: cover;
    height: -webkit-fill-available;
    height: -moz-fill-available;
    height: -moz-fit-content;
    height: -moz-available;
  }
}

.loading-screen .btn {
  display: none;
  position: absolute;
  bottom: 45px;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .loading-screen .btn {
    display: none;
    position: absolute;
    bottom: 15vh;
    text-transform: uppercase;
  }
}

#root {
  display: none;
}