body {
  margin: 0;
  padding: 0;
}

.tela {
  position: relative;
  width: 100vw;
  height: 100vh;
  background-image: url("https://64.media.tumblr.com/fd365130fed2a6d936b7597eb1eead15/8c4f1ac553c280c2-47/s1280x1920/4c526ac1a6ded4b9e5938c930ba496d687383345.pnj");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.conteudo {
  position: relative;
  width: 100%;
  height: 100%;
}


.topo {
  position: absolute;
  top: 80px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}


.titulo {
  color: red;
  font-size: 70px;
  font-family: 'Courier New', monospace;
  letter-spacing: 3px;
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.fadinha {
  width: 100px;
}



.area-janela {
  position: absolute;
  bottom: 376px;
  left: 248px;
  width: 500px;
  height: 300px;
}


.fundo-branco {
  position: absolute;
  top: 206px;
  left: 64px;
  width: 567px;
  height: 319px;
  background-color: white;
}


.janela {
  position: absolute;
  width: 141%;
  top: 0;
  left: 0;
}


.texto-janela {
  position: absolute;
  top: 211px;
  left: 71px;
  width: 561px;
  height: 303px;
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: black;
  overflow:auto;
}


.blinkies-container {
  position: absolute;
  top: 10px;
  width: 100%;
  overflow: hidden;
}


.blinkies-track {
  display: flex;
  gap: 10px;
  width: max-content;
  animation: deslizar 35s linear infinite;
}


.blinkies-track img {
  height: 27px;
}


@keyframes deslizar {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}


.blinkies-container:hover .blinkies-track {
  animation-play-state: paused;
}