/* BASE */
body {
  background-color: #d1d68c;
  color: #1a1a1a;
  font-family: 'Courier New', Courier, monospace;
}

/* HEADER */
header {
  padding: 60px 20px;
}

.logo {
  max-width: 180px;
  margin-bottom: 20px;
}

h1 {
  font-size: 2.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.subtitle {
  margin-top: 10px;
}

/* SECCIONES */
section {
  padding: 60px 0;
}

/* DIVIDER */
.divider {
  width: 100px;
  height: 3px;
  background-color: #8b0000;
  margin: 20px auto;
}

/* TIPOGRAFÍA */
p {
  line-height: 1.7;
}

/* LINKS */
a {
  color: #8b0000;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 30px;
  background-color: #1a1a1a;
  color: #fff;
  font-size: 0.9rem;
}

.footer-logo {
  max-width: 120px;
  margin-bottom: 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
}