.fullscreen-bg {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  z-index: -100;
}

.fullscreen-bg__video {
  /* position: absolute;
  top: 0;
  left: 0; */
  /* height: 80%; */
  width: 50%;
}

video::-webkit-media-controls-start-playback-button {
  display: none !important;
}

video::-webkit-media-controls-play-button {
  display: block;
}

/*  자막 스타일 */
video::cue {
  opacity: 1;
  color: yellow !important;
  background-color: transparent !important;
  font-size: 50px !important;
  font-weight: bold;

  text-shadow: -3px -3px 0 #000, 3px -3px 0 #000, -3px 3px 0 #000,
    3px 3px 0 #000;

  -webkit-text-stroke-width: 3px;
  -webkit-text-stroke-color: black;
}

@media (orientation: landscape) {
  /* Landscape 모드일 때 적용할 CSS */
  header {
    height: 0;
    display: none;
  }
}

@media (max-width: 768px) {
  video#myVideo,
  audio#myAudio {
    position: fixed;
    right: 0;
    top: 0;
    min-width: 100%;

    transform: translateY(50%);

    width: auto;
    height: auto;
    z-index: -100;
    background-size: cover;

    /* width: 100wv !important;
    height: 100vh; */
    /* height: auto !important; */
    /* position: fixed !important; */

    /* position: absolute;
    bottom: 0 !important;
    left: 0 !important;
    /* right: 0; */

    /* object-fit: contain;
    background-size: 100% 100%; */

    /* min-width: 100% !important; */
    /* min-height: 100% !important; */
  }
}
