body {
  margin: 0;
  font-family: "Bai Jamjuree", Arial, Helvetica, sans-serif;
  color: #fff;
  background: #5e72e4;
  background: linear-gradient(
    90deg,
    rgba(94, 114, 228, 1) 0%,
    rgba(130, 94, 228, 1) 100% fixed
  );
  overflow: hidden;
}

a {
  color: #fff;
  font-weight: 600;
  text-decoration: inherit;
}
a:hover {
  color: #d1d5ed;
}

.container {
  padding: 2rem;
}

.console {
  display: block;
  unicode-bidi: embed;
  font-family: monospace;
  white-space: pre;
}

.blink {
  font-weight: bold;
  margin-right: 0.5rem;
  animation: blink 1s steps(4, start) infinite;
  -webkit-animation: blink 1s steps(4, start) infinite;
}
@keyframes blink {
  to {
    visibility: hidden;
  }
}
@-webkit-keyframes blink {
  to {
    visibility: hidden;
  }
}
.noblink {
  margin-right: 0.5rem;
}

footer {
  position: absolute;
  left: 0;
  bottom: 0;
  left: 2rem;
  font-size: 11px;
}
