
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow: hidden;
  height: 100%;
  width: 100%;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: black;
  font-family: Verdana;
  color: black;
  overflow-x: hidden; /* Only hide horizontal overflow */
}

.hitbox{
  position: absolute;
  left: 56vw;   /* ~1080px on a 1920px screen */
  top: 15vh;    /* 20% down from the top */
  transform: skewY(2deg);
  opacity: 0;
  z-index: 5;
}

.hitbox:hover ~ .tc-container{
  opacity: 0;
}


.tc-container{
  width: auto;
  height: auto;
  position: static;
  opacity: 1;
  z-index: 2;
}

video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
