/* This is the main CSS file for Luke.yt */
body {
  margin: 0;
  background-color: #0a0a0a;
  color: #00ff88;
  font-family: 'Share Tech Mono', monospace;
  line-height: 1.6;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

h1, .tagline {
  text-align: center;
}

.blog {
  margin-top: 2rem;
}

.entry {
  min-height: 100vh;      /* Each entry takes full screen height */
  display: flex;
  flex-direction: column;
  justify-content: center; /* Vertically center content */
  margin: 0 auto;
  padding: 2rem;
  box-sizing: border-box;
  border-left: 3px solid #00ff88;
  background-color: rgba(0, 255, 136, 0.05);
}

.entry .date {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.entry .progress {
  font-size: 1rem;
  color: #66ffcc;
}

.blog-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 2rem auto;
  border: 2px solid #00ff88;
  border-radius: 8px;
}

.footer {
  text-align: center;
  padding: 20px;
  font-size: 0.8rem;
  color: #006644;
}

.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;
}