<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.main {
  background-color: #fff;
  opacity: 0;
}

.videos {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.vid {
  height: 80%;
  width: 25%;
  cursor: pointer;
}

video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#video1 {
  object-position: right;
}

#video2 {
  object-position: left;
}

.images {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 99%;
  pointer-events: none;
  z-index: 1;
}

.im {
  width: 100%;
  height: 100%;
  position: absolute;
}

.im img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media screen and (max-width: 768px) {
  .vid:last-of-type {
    display: none;
  }

  .vid {
    width: auto;
  }

  #video1 {
    object-position: center;
  }
}
</pre></body></html>