html {
    font-size: 62.5%;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
body {
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-weight: 400;
    background-color: #000000;
    color: #ffffff;
    margin:0;
    padding: 0;
    scroll-behavior: smooth;
}
*, *:before, *:after {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
}
h1 {   
    font-size: 2.5rem;
    text-align: center;
    padding-bottom: 3rem;
}
h2 {
   font-size: 2rem;
   text-align: center;
   padding-bottom: 3rem;
}
h3 {
    font-size: 1.5rem;
    padding-bottom: 3rem;
}
p {
    font-size: 1.5rem;
    text-align: justify;
    padding-bottom: 3rem;
}
.navigation-container { 
    align-self: flex-start;
    display: flex;
    justify-content: space-around;
    background-color: var(--white);
    position: fixed;
    top: 0;
    width:  100%;
    z-index: 100;
 }
.navigation-container a {
    font-family: "Montserrat", sans-serif;
    text-decoration: none;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-weight: 600;
    letter-spacing: clamp(0.2rem, 2.5vw, 0.6rem);
    color: var(--black);
    padding: 1rem;
}
.navigation-container a:hover {
    color: var(--white);
    background-color: var(--black);
}
.container-text {
    display: grid;
    justify-content: center;
    margin-top: 10rem;
}
.general-text {
    width: 80%;
    text-align: justify;
    line-height: 2.5rem;
    margin: 0 auto;
}
.data-text {
    padding-left: 3rem;
}
.boton-descarga {
    display: inline-block;
    padding: 10px 20px;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}
.footer-container {
  background-color: var(--black);
  color: var(--white);
  padding: 2rem 1rem;
  font-family: var(--main-font);
}
.footer-container .legal-text {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.footer-container .legal-item {
  margin: 0;
  padding: 0;
  text-align: center;
}
.footer-container .legal-item a {
  color: var(--white);
  text-decoration: none;
  font-size: 1.4rem;
  font-family: inherit;
}
.footer-container .rights-reserved {
  width: 100%;
  text-align: center;
  font-size: 1.2rem;
  margin-top: 1.5rem;
}
