*,
html,
body {
  padding: 0;
  margin: 0;
  overflow: hidden;
}

body {
  font-family: Arial;
  color: black;
}

video,
img {
  height: 100vh !important;
  object-fit: fill !important;
  width: 100%;
}

.base-content {
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  overflow-x: hidden;
  background-color: black;
}

.base-content video {
  width: 100vw;
  height: 100vh;
}

.screens-container {
  width: 100vw;
  height: 100vh;
  position: relative;
  display: flex;
}

.screen {
  height: 100vh;
  position: relative;
  z-index: 2;
  overflow-x: hidden;
}

.content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  text-align: center;
}

iframe {
  border: none;
  outline: none;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
