    html, body {
      margin: 0;
      padding: 0;
      background-color: black;
      color: white;
      height: 100%;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: Arial, sans-serif;
      cursor: pointer;
    }

    #text, #finalMessage {
      font-size: 2em;
      font-weight: bold;
      text-align: center;
    }

    #finalMessage {
      display: none;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      padding: 0 20px;
    }

    video {
      display: none;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }