:root{
  --blanco: #fff;
  --negro: #000;
  --primario: #eec100;
  --secundario:#6d0303;

  --fuentePrincipal: font-family: 'Lato', sans-serif;
}

/*  GLOBALES */

html{
  font-size: 62.5%;
  box-sizing: border-box; /* Hack para box model*/
}

*, *:before, *:after {
  box-sizing: inherit;
} /* Hack para box model*/

body{
  font-size: 16px;
  line-height: 1.5;
  background-image: url("../img/fondos/fondo_web_secundario.webp");
  height: 100%;
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover; /* Resize the background image to cover the entire container */
  background-color: azure;
  display: flex;
  flex-direction: column;
}
a{
  color: var(--primario);
  text-decoration: none;
}

a:hover{
  color:orange;
}

.contenedor{
  max-width: 120rem;
  margin: 0 auto;
}

h1, h2, h3 {
  text-align: center;
  font-family: var(--fuentePrincipal);
  text-transform: uppercase;
}

h1{
  font-size: 4rem;
}

h2{
  font-size: 3.2rem;
}

h3{
  font-size: 2.4rem;
}

.quienes_somos{
  background-image: url("../img/fondos/fondo_texto.webp");
  height: 400px;
  background-position-y: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  border-radius: 44px 44px 44px 44px;
  border: 0px solid #fff;
  margin: 5rem 2rem;

}

.texto{
  text-align: left;
  position: absolute;
  top: 10%;
  left: 10%;
  right: 10%;
  color: black;
  font-size: 1rem;
}

.texto h1{
  text-align: left;
  margin-bottom: 2rem;
  font-size: 1.5rem;
  font-weight: bold;
}

.texto p{
  font-size: 1rem;
}


@media (min-width: 768px) {
  .quienes_somos{
    height: 600px;
    max-width: 900px;
    margin: 8rem 10rem;
  }
  
  .texto{
    text-align: left;
    position: absolute;
    font-size: 1.5rem;
  }
  .texto h1{
    font-size: 2.25rem;
  }
  .texto p{
    font-size: 1.5rem;
  }
}
@media (min-width: 1280px) {
  
  .texto h1{
    font-size: 3rem;
  }
  .texto p{
    font-size: 2rem;
  }
}

@media (min-width: 768px) {
  .footer{
    margin-top: 5rem;
  }
  
}








