body {
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--negro);
  background: var(--cafe-base);
  line-height: 1.5;
  min-height: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1 0 auto;
}

h1,
h2,
h3,
h4 {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.1;
  letter-spacing: -0.024em;
  color: var(--negro);
}

p {
  margin-bottom: 14px;
  color: var(--cafe-texto);
  max-width: 72ch;
  font-size: 17px;
}

a {
  color: inherit;
  text-decoration: none;
}