    body, html {
      margin: 0;
      padding: 0;
      height: 100%;
      overflow: hidden;
      font-family: 'Courier New', monospace;
    }

    #telacompleta {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background-color: black;
      color: white;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      z-index: 9999;
      text-align: center;
      padding: 20px;
    }

    #telacompleta img {
      width: 200px;
      max-width: 80%;
      margin-bottom: 20px;
    }

    #textoDigitado {
      font-size: 1.2rem;
      white-space: pre-wrap;
      max-width: 800px;
    }

    @media (max-width: 600px) {
      #textoDigitado {
        font-size: 1rem;
      }
    }