/* This is the main CSS file for Luke.yt */
body {
  margin: 0;
  background-color: #0a0a0a;
  color: #00ff88;
  font-family: 'Share Tech Mono', monospace;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;   /* use min-height instead of fixed height */
  overflow-x: hidden;  /* allow vertical scroll, block only sideways */
}


.container {
  text-align: center;
  max-width: 800px;
  padding: 20px;
}

h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  color: #00ff88;
}

p.tagline {
  font-size: 1.25rem;
  color: #66ffcc;
  margin-bottom: 2rem;
}

.links a {
  display: inline-block;
  margin: 0.5rem;
  padding: 10px 20px;
  border: 1px solid #00ff88;
  color: #00ff88;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.links a:hover {
  background-color: #00ff88;
  color: #0a0a0a;
}

.footer {
  position: absolute;
  bottom: 20px;
  font-size: 0.8rem;
  color: #006644;
}
