/* Estilo oscuro para "Me llamo Sam" */

body {
  background-color: #1e1e1e;
  color: #d4d4d4;
  font-family: 'Courier New', Courier, monospace;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

header {
  border-bottom: 2px solid #333;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 0.2rem;
  color: #ffffff;
}

.subtitle {
  font-size: 1rem;
  color: #999;
  font-style: italic;
}

article {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px dashed #444;
}

h2 {
  font-size: 1.5rem;
  color: #f1f1f1;
}

em {
  color: #888;
}

p {
  margin: 0.8rem 0;
}

footer {
  margin-top: 4rem;
  text-align: center;
  font-size: 0.9rem;
  color: #666;
  border-top: 1px solid #333;
  padding-top: 1rem;
}

/* Detalles de interactividad sutil */
body:hover {
  background-color: #1b1b1b;
}

article:hover {
  background-color: #2a2a2a;
  transition: background-color 0.3s ease;
}

::selection {
  background: #555;
  color: #fff;
}

a {
  color: #b56576;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  color: #e07a5f;
}