@import "index.css";
@import "terminal.css";

.menu a:nth-child(1) {
  background: var(--back);
}

.menu a:nth-child(2) {
  background: var(--back-light);
}

/* Adjust Terminal UI */

.command {
  animation: type 1s steps(12, end) forwards;
  line-height: 2ch;
}

.command2 {
  animation: type 1s steps(19, end) 2.5s forwards;
  line-height: 2ch;
}

/* Output */

@media (min-width: 1340px) {
  .output {
    width: auto;
    height: auto;
    margin-bottom: 2ch;
    margin-left: 0;
  }
  .output2 ul {
    margin-top: 4ch;
  }
  .output2 hr {
    margin-left: 2ch;
  }
} 

.output2 {
  margin: 2ch;
  opacity: 0;
  animation: run 1s steps(1, end) 3s forwards;
  pointer-events: none;
}

hr {
  height: 0.5ch;
  border: 0;
  border-top: 1.5px solid var(--back-light);
  border-bottom: 1.5px solid var(--back-light);
}

.output ul {
  width: auto;
  height: auto;
  margin-bottom: 2ch;
  margin-left: 0ch;
}

.output ul li a {
  color: var(--fore-dim);
  text-decoration: underline;
}

.output ul li a:hover {
  color: var(--fore);
}

.output2 ul {
  width: auto;
  height: auto;
  margin-left: -2ch;
}

.output2 ul li {
  list-style-type: none;
  color: var(--fore-dim);
}

.output2 ul li:hover {
  color: var(--fore);
}

#project-description {
  margin-left: 2ch;
}

ul li:nth-child(1) span {
  color: var(--blue);
}

ul li:nth-child(2) span {
  color: var(--green);
}

ul li:nth-child(3) span {
  color: var(--fore-dim);
}

ul li:nth-child(4) span {
  color: var(--red);
}

ul li:nth-child(5) span {
  color: var(--orange);
}

ul li:nth-child(6) span {
  color: var(--yellow);
}
