@import url("https://fonts.googleapis.com/css2?family=VT323&display=swap");

::selection {
  background: #5fe4e4;
  color: #1b1b1b;
  text-shadow: none;
}

body {
  background: #1b1b1b;
  text-shadow: -2px 0px 2px #db7497, 2px 0px 2px #41bcbc;
  color: #5fe4e4;
  font-weight: bold;
  font-size: 32px;
  padding: 32px;
}

pre {
  font-family: "VT323", monospace;
}

html {
  overflow: scroll;
  overflow-x: hidden;
}

  ::webkit-scrollbar {
  width: 0;
  background: transparent;
}
  ::-webkit-scrollbar-thumb {
  background: transparent;
}

a {
  color: #FFFFFF;
  background-color: transparent;
  text-decoration: none;
}

.cursor {
  display: inline-block;
  width: 0.25em;
  height: 0.9em;
  transform: translateY(0.18em);
  background: #5fe4e4;
  box-shadow:
    0 0 4px #41bcbc,
    0 0 10px #41bcbc;
  animation: blink 1.05s steps(1) infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}