#tv-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 10000;
  background-color: black;
}

#tv {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 10001;
  background-color: black;
  /*
  display: flex;
  align-items: center;
  justify-content: center;
  */
}

#tv img {
    width: 100%;
    /*
    height: auto;
    */
    height: 100vh;
    object-fit: cover;
    margin: 0 auto;
    text-align: center;
  }

#tv video {
    width: 100%;
    /*
    height: auto;
    */
    height: 100vh;
    object-fit: cover;
  }
