@font-face {
  font-family: 'TravelingTypewriter';
  /* Asegúrate de que la ruta sea correcta */
  src: url('fonts/TravelingTypewriter.ttf') format('truetype');
}

/* ESTILOS BASE / FONDO */
body {
  margin: 1;
  font-family: "TravelingTypewriter"; /* Fallback añadido */
  background-color: #fbf8ef; 
  color: #1a1a1a; /* Negro tinta, no negro puro #000 para realismo */
  line-height: 1.4;
}

.layout {
  margin: 10%;
}


/* HEADER */
.page-header {
  text-align: center;
  margin: 4rem 0 3rem;
  padding-bottom: 2rem;
  border-bottom: 1.4px solid #333; /* Línea de corte opcional bajo el título */
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: normal;
  letter-spacing: 2px;
  color: #b83228;
}

.page-header h2 {
  font-size: 1.1rem;
  font-weight: normal;
  opacity: 0.8;
}

h3 {
  color: #b83228;
}  

/* ENLACES */
a {
  color:#314f4a;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  font-style: italic;
}

a:visited {
  text-decoration: none;
  color: #b83228;
}