html,
body {
  font-family:
    "Consolas", Menlo, Monaco, "Lucida Console", "Liberation Mono",
    "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Courier New", monospace,
    serif;
  color: #fff;
  text-align: center;
  background: #161616;
  display: flex;
  flex-direction: column;
}

.terminal {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  width: 50%;
  margin: auto;
  max-width: 60rem;
  font-size: 1rem;
}

@media (min-width: 720px) {
  .terminal {
    width: 80%;
    font-size: 1.1rem;
  }
}

@media (min-width: 1140px) {
  .terminal {
    width: 50%;
    font-size: 1rem;
  }
}

.prompt {
  display: flex;
  color: white;
}

.prompt > .host {
  color: #269e63;
  font-weight: bold;
}

.prompt > .cwd {
  color: #12488b;
  padding-right: 2px;
}

.content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: auto;
}

.content > .block {
  text-align: justify;
}

.links {
  display: flex;
  flex-direction: row;
  padding-bottom: 1rem;
  justify-content: space-between;
}

a {
  color: white;
  display: inline-block;
  position: relative;
  text-decoration: none;
}

a:after {
  content: "";
  height: 1px;
  background: white;
  position: absolute;
  pointer-events: none;
  bottom: -0.5rem;
  left: 0;
  right: 0;
  opacity: 0;
  transform: scale(0, 1);
  transition: all 300ms;
}

a:hover:after {
  opacity: 1;
  transform: scale(1, 1);
}

.cursor {
  display: inline-block;
  width: 1ch;
  height: 1.2em;
  background-color: #fff;
  animation: blink 1s infinite step-end;
}

@keyframes blink {
  0%,
  100% {
    background-color: #fff;
  }
  50% {
    background-color: transparent;
  }
}

.line {
  display: flex;
  flex-direction: row;
  align-items: center;
}
