@import url("https://fonts.googleapis.com/css2?family=Kode+Mono:wght@400..700&display=swap");

body {
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #354533;
}
@supports (height: 100dvh) {
  body {
    width: 100dvw;
    height: 100dvh;
  }
}
.caption {
  position: absolute;
  width: 70vw;
  bottom: 6vh;
  z-index: 100;
  display: none;
}
.osd {
  font-family: "Kode Mono", monospace;
  font-weight: 400;
  line-height: 22px;
  color: #96d7b3;
  text-shadow: #0e631e -1px 0px 2px, #0e631e 1px 0px 2px, #0e631e 0px -1px 2px, #0e631e 0px 1px 2px;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.osd.visible {
  opacity: 0.8;
}

.channel {
  position: absolute;
  right: 60px;
  top: 0px;
}

.volume {
  position: absolute;
  left: 60px;
  bottom: 0px;
}

.tv-knob {
  position: absolute;
  width: 62px;
  top: 1353px;
  cursor: pointer;
}

.volume-knob {
  position: absolute;
  width: 50px;
  top: 1214px;
  left: 940px;
  cursor: pointer;
}

.logo {
  position: absolute;
  width: 16vw;
  min-width: 160px;
  right: 3vw;
  top: 3vh;
  z-index: 1000;
}

.center {
  right: 50%;
  transform: translate(50%, 0);
}

.container {
  position: relative;
  width: 1920px;
  height: 2505px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 0;
}

.containerPortraitiOS {
  position: absolute;
  transform-origin: top;
  top: 0vh;
}

.bear {
  position: absolute;
  left: 1125px;
  top: 881px;
}

.bg-image {
  height: 100%;
}

.pic1 {
  position: absolute;
  z-index: -1000;
  width: 150px;
  height: 176px;
  left: 665px;
  top: 803px;
  object-fit: cover;
  transform: skew(0, 2deg);
}

.pic2 {
  position: absolute;
  z-index: -1000;
  width: 120px;
  height: 158px;
  left: 890px;
  top: 702px;
  object-fit: cover;
  transform: skew(0, 3deg);
}

.video-container {
  position: absolute;
  /*width: 225px;*/ /*4:3 video AR*/
  width: 322px; /*16:9 video AR*/
  height: 181px;
  top: 52.4%;
  left: 41.2%;
  transform: translate(-50%, -50%);
  z-index: -1000;
}

.video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1000;
}

.noise {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 1;
  transition: opacity 0.2s ease;
}

.noise.hidden {
  opacity: 0;
}