body {
  margin: 0;
  color: white;
  font-family: 'Courier New', Courier, monospace;
  background-color: black;
  background-image: url("images/blackkraftred.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-decoration: none;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

/* Terminal Page Styles */
.terminal-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  max-width: 700px;
  margin: 0 auto;
}

.logo-terminal {
  width: 60px;
  margin-bottom: 2rem;
}

.terminal {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 700px;
}

.line {
  white-space: nowrap;
  font-size: 19px;
  color: white;
}

a {
  color: white;
  text-decoration: none;
}

a:visited {
  color:#c17d80;
}

a:hover {
  text-decoration: underline;
}


