
body {
  background-color: #000; /* Sets the background to black */
  color: #00FF66; /* Optional: Sets text color to green for contrast */
  font-family: 'Glass TTY VT220', monospace; /* CDN for body text */
}

h1, h2, h3, .typed-text {
  font-family: 'Glass TTY VT220 Custom', monospace; /* Local custom for headings */
}

.logo {
  height: 60px;
  margin-bottom: 20px;
}

.hero {
  text-align: center;
  padding: 100px 20px;
}

.hero-text {
  font-size: 2.5rem;
  margin: 0;
}

.subtext {
  font-size: 1rem;
  opacity: 0.8;
}

.features {
  padding: 60px 20px;
  text-align: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.card {
  background: #111;
  padding: 20px;
  border: 1px solid #00FF66;
  border-radius: 8px;
}

.about, .contact {
  padding: 60px 20px;
  max-width: 800px;
  margin: 0 auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  font-size: 1rem;
  background: #222;
  color: #00FF66;
  border: 1px solid #00FF66;
  border-radius: 5px;
}

.contact-form button {
  background-color: #00FF66;
  color: #000;
  font-weight: bold;
  border: none;
  padding: 12px;
  cursor: pointer;
}

footer {
  background: #111;
  padding: 20px;
  text-align: center;
  font-size: 0.8rem;
}

#loading-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: #0d0d0d;
  color: #00FF66;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  font-size: 1.2rem;
}

a, button {
  transition: all 0.3s ease-in-out;
}

a:hover, button:hover {
  color: #000;
  background: #00FF66;
}
