* {
  box-sizing: border-box;
  /* Prevent padding from breaking the layout */
}

/* To make scrolling smooth when clicking */
html {
  scroll-behavior: smooth;
}



body {
  margin: 0;
  padding: 0;
  font-family: 'lora', serif;
  font-size: 17px;
  line-height: 1.6;
  color: #2c1e12;
}

img {
  max-width: 100%;
  /* No image overflows the container */
  height: auto;
}




body {
  font-family: 'Lora', serif;
  font-size: 17px;
  line-height: 1.6;
  color: #2c1e12;
}


h1,
h2,
h3,
.titulo-stats {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  color: #5C3317;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
}

h1 {
  font-size: 42px;
}

h2 {
  font-size: 32px;
}


a {
  color: rgb(139, 37, 37);
  text-decoration: none;


}

a:hover {
  color: red;
}



.titulo {
  color: rgb(139, 37, 37);
}

.parrafo {
  max-width: 500px;
  margin: 0 left;
  text-align: justify;
}

.parrafo p {
  font-size: 16px;
  line-height: 1.5;
}

.fondo {
  background-color: #de9a46;
  background-attachment: fixed;
  background-image: url("/public/img/back.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;

}

.contenedor-principal {
  padding: 40px;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}