html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  color: #00cc00;
  font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
  font-size: 16px;
}

body {
  width: 50em;
  min-width: 50em;
  height: 100vh;
  margin: 0 auto;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

html:focus,
html:focus-visible,
body:focus,
body:focus-visible,
#terminal:focus,
#terminal:focus-visible {
  outline: none;
  box-shadow: none;
}

html {
  scrollbar-width: none;
}

html::-webkit-scrollbar {
  width: 0;
  height: 0;
}

a {
  color: inherit;
}

.terminal-link {
  text-decoration: none;
  cursor: pointer;
}

.about-link {
  color: #7fd7ff;
}

.terminal-link:hover,
.terminal-link:focus-visible {
  color: #ffffff;
}

.terminal-cursor {
  display: inline-block;
  margin-left: 4px;
  animation: terminal-blink 1s steps(1, end) infinite;
}

@keyframes terminal-blink {
  50% {
    opacity: 0;
  }
}

pre {
  margin: 0;
  line-height: 1.4;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

#terminal {
  min-height: 100%;
}
