body {
    margin: 0px;
    /* Prevent blue highlighting of elements on Android Chrome */
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    background-color:black;
    height:100%;
    width:100%;
}



video#bgVideo {
/*   display: flex;
  justify-content: center;
  align-items: center; */
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);


  max-width: 90%;
  max-height: 90%;
  margin-left: auto;
  margin-right: auto;
  text-align:center;
  z-index: -100;   
  border-radius:80px;
}


#logo {
  text-align:left;
  width:200px;
  margin-left:20px;
  margin-top:50px;
  position:absolute;
  z-index: 3;
}

#warning {
    z-index: 3;
    position:absolute;
    margin-left:auto;
    margin-right:auto;
    left:0;
    right:0;
    bottom:100px;
    color: white;
    width: 80%;
    font-size: 10pt;
    line-height:1.4;
    font-family: "Special Elite",sans-serif;
    text-align:center;
    max-width:600px;
  
  
}

a {
  color:white;
}

.title {
  font-weight:bold;
  
}

#fullscreen {
    z-index: 300;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 20px;
    opacity: 1;
}

#fullscreen:hover {
    opacity: 1;
}

#playicon {
    pointer-events: none;
    touch-action: none;
    position: fixed;
    background-image: url('../public/play.svg');
    width: 100vw;
    height: 100vh;
    /* height: calc(var(--vh, 1vh) * 100); */
    background-position: center;
    background-repeat: no-repeat;
    /* background-size: 100px 100px; */
    animation: pulse 4s infinite;
}

@keyframes pulse {
  0%, 100% {
    background-size: 100px auto;
    -webkit-background-size: 100px;
  }
  50% {
    background-size: 80px auto;
    -webkit-background-size: 80px;
  }
}


#errors {
    z-index: 1;
    position: fixed;
    top: 10px;
    left: 0px;
    width: 100vw;
    color: red;
    font-size: 16pt;
}

#censor {
    z-index: 100;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 70px;
    background: black;
/*   display:none; */
}

#static {
    background-image: url(../public/gif2.gif);
    position: fixed;
    top: 0px;
    left: 0px;
    width:100vw;
    height:100vh;
    height: calc(var(--vh, 1vh) * 100);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

#player {
    position: fixed;
    top: 0px;
    left: 0px;
    width:100vw;
    height:100vh;
    height: calc(var(--vh, 1vh) * 100);
    z-index: -1;
    opacity: 0;
  
}

#overlay {
    position: fixed;
    top: 0px;
    left: 0px;
    width:100vw;
    height:100vh;
    height: calc(var(--vh, 1vh) * 100);
    z-index: 2;
    cursor: pointer;
}

.centered {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hidden {
    display: none;
}
