* {
  box-sizing: border-box;
  font-family: monospace;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--base);
  color: var(--text);
}

main {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.terminals {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 90%;
  max-width: 700px;
}

.terminal {
  background: var(--mantle);
  border-radius: 8px;
  padding: 12px 14px;
  box-shadow: 0 0 0 1px var(--surface0);
}

.terminal p {
  margin: 4px 0;
  line-height: 1.4;
}

.highlight {
  color: var(--pink);
}

.highlight2 {
  color: var(--blue);
}

a {
  color: var(--lavender);
  text-decoration: none;
  margin-right: 10px;
}

a:hover {
  text-decoration: underline;
}

/* Mobile spacing */
@media (max-width: 600px) {
  .terminals {
    width: 95%;
  }
}

