/* Luke.yt – About This Website page styling */

body {
  margin: 0;
  background-color: #0a0a0a;
  color: #e0e0e0;
  font-family: "JetBrains Mono", monospace;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  padding: 3rem 1rem;
  line-height: 1.7;
}

.content {
  max-width: 780px;
  background: rgba(20, 20, 20, 0.65);
  border: 1px solid rgba(0, 255, 136, 0.15);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  box-sizing: border-box;
}

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

.blog-image {
  display: block;
  width: 50%;  /* scales image width to half of its container */
  height: auto; /* maintains aspect ratio */
  max-width: 100%;  /* prevents image from overflowing the container */
}


h1, h2 {
  color: #00ff88;
  font-weight: 600;
  line-height: 1.3;
  margin-top: 0;
  text-align: center;
}

h1 {
  font-size: 2rem;
  margin-bottom: 1.8rem;
}

h2 {
  font-size: 1.4rem;
  margin: 2.2rem 0 1rem 0;
  text-align: left;
}

p {
  color: #d0d0d0;
  font-size: 1rem;
  margin-bottom: 1.3rem;
  text-align: left;
}

ul {
  list-style-type: none;
  padding-left: 1rem;
  margin-bottom: 2rem;
}

ul li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.6rem;
  color: #cccccc;
}

ul li::before {
  content: ">";
  position: absolute;
  left: 0;
  color: #00ff88;
  font-weight: bold;
}

a {
  color: #00ff88;
  text-decoration: none;
  border-bottom: 1px dotted rgba(0, 255, 136, 0.3);
  transition: color 0.2s ease, border-color 0.2s ease;
}

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

.links {
  text-align: center;
  margin-top: 2rem;
}

.links a {
  display: inline-block;
  border: 1px solid rgba(0, 255, 136, 0.25);
  padding: 0.45rem 1.1rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
}

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

@media (max-width: 600px) {
  body {
    padding: 2rem 1rem;
  }
  .content {
    padding: 1.8rem 1.2rem;
  }
  h1 {
    font-size: 1.7rem;
  }
  h2 {
    font-size: 1.2rem;
  }
}
