* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Courier New", monospace;
}

body {
  background: #000;
  color: #00ff88;
  height: 100vh;
}

a {
  color: #ffffff;
  text-decoration: none;
}

a:hover {
  color: #fffff0;
  text-decoration: underline;
}

.terminal {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

#hero {
  font-size: 32px;
  line-height: 1.4;
  white-space: pre-wrap;
  text-align: center;
}

#products {
  margin-top: 40px;
  text-align: center;
  max-width: 600px;
}

#products h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

#products p {
  margin-bottom: 20px;
}

#products a {
  color: #ffffff;
  text-decoration: underline;
}

#products a:hover {
  color: #fffff0;
}

#contact {
  margin-top: 40px;
  text-align: center;
  max-width: 600px;
}

#contact h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

#contact p {
  margin-bottom: 20px;
}

/* blinking cursor */
.cursor {
  display: inline-block;
  width: 10px;
  height: 1.2em;
  background: #00ff88;
  margin-left: 4px;
  animation: blink 1s steps(2) infinite;
}
footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 12px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #00cc66;
  border-top: 1px solid #003322;
  background: #000;
}

footer nav a {
  color: #00cc66;
  margin-left: 16px;
  text-decoration: none;
}

footer nav a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  #hero {
    text-align: center;
  }
  #products {
    text-align: center;
    max-width: 100%;
  }
  #contact {
    text-align: center;
    max-width: 100%;
  }
  footer {
    flex-direction: column;
    text-align: center;
  }
  footer > span {
    order: 2;
    margin-top: 8px;
  }
  footer nav {
    order: 1;
  }
}

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