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

.start-img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  opacity: 0;
  cursor: pointer;
  background: url("./startbild.png") no-repeat;
  background-size: cover;
  transition: 0.6s;
}

.start-img:hover {
  /* -webkit-filter: grayscale(100%);
  filter: grayscale(100%); */
  background: url("./startbild_hover.png") no-repeat;
  background-size: cover;
}

.video-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.video {
  width: 100%;
  height: 100%;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: contain;
  cursor: pointer;
}

.scroll {
  z-index: 1000;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  overflow-x: hidden;
  overflow-y: auto;
}

@media (max-width: 768px) {
  .start-img {
    object-fit: contain;
  }
  .video {
    object-fit: cover;
    border-radius: 20px;
  }
}</pre></body></html>