body {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  /* background: #fdfdfd; */
  margin: 0;
}

#text {
  display: flex;
  justify-content: flex-start;
  overflow: hidden;
}

p {
  font-family: "Courier New", Courier, monospace;
  font-size: 50px;
  color: #000;
  white-space: nowrap;
  margin: 0;
}

/* Blinking caret animation */
@keyframes blink-caret {
  0%, 100% {
    border-color: transparent;
  }
  50% {
    border-color: orange;
  }
}

/* Apply the caret */
.border {
  border-right: 0.15em solid orange;
  animation: blink-caret 0.75s step-end infinite;
}
::-webkit-scrollbar{
      display: none;
    }