<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  overflow-x: hidden;
  background-color: black;
}
.main {
  background-color: black;
  -ms-flex: 1 1 100%;
      flex: 1 1 100%;
  width: 99%;
  height: 100%;
  -ms-flex-pack: center;
      justify-content: center;
  padding: 2em;
}
@media (max-width: 700px) {
  .main {
    padding: 5px;
  }
}
#ifrm {
  justify-self: center;
  width: 750px;
  height: 500px;
  margin-left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 700px) {
  #ifrm {
    display: none;
  }
}
.mobile-text {
  display: none;
  font-size: 24px;
  text-align: center;
  color: white;
}
.mobile-text .emoji {
  font-size: 800%;
}
@media (max-width: 700px) {
  .mobile-text {
    display: block;
  }
}
</pre></body></html>