body, html {
    background-color: black;
    margin: 0;
    border: 0;
    padding: 0;
}

.videodiv {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -35%);
    width: 1px;
    height: 1px;
}

.videodiv img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

@keyframes expandVideo {
  from {
    width: 1px;
    height: 1px;
  }
  to {
    width: 50vw;
    height: auto;
  }
}

#title {
  position:fixed;
  top:10px;
  left:10px;
  font-size: 50pt;
  font-weight: 900;
  animation: 2s infinite alternate bluemix;
  font-family: 'Courier New', Courier, monospace;
  margin: 0px;
  padding: 6px 12px;
  background-color: white;
  border-radius: 8px;
}

@keyframes bluemix {
  from {
    color: white;
  }
  
  50% {
    color: grey;
  }
  
  to {
    color: lightskyblue;
  }
}

  #rickrollcount {
      position: fixed;
      top: 10px;
      right: 10px;
      color: black;
      background-color: white;
      padding: 6px 12px;
      border-radius: 8px;
      font-family: 'Courier New', Courier, monospace;
      font-size: 35px;
      z-index: 1000;
      font-weight:bold;
      text-align: right;
      display: none;
    }
    
#overlay {
  position: fixed;
  inset: 0;
  background: black;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 2rem;
  z-index: 1000;
  cursor: pointer;
}

#tapText {
  animation: pulse 1.5s ease-in-out infinite;
  font-family: 'Courier New', Courier, monospace;
  font-weight: bold;
  font-size: 50px;
  
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}
