/* Importar Open Sans */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap');

/* Importar Roboto */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');

/* Aplicar Roboto a los títulos */
h1, h2, h3 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700; /* Bold */
}
h1 {
      font-size: 1.6rem;
    text-transform: uppercase;
}

body {
  
  font-weight: 400; /* Normal */
}
/* Estilos para el resto del contenido */
body, p, a, input, button {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
}
p {
  font-size: 1.2rem;
}
.light-text {
  font-weight: 300; /* Light */
}

.bold-text {
  font-weight: 700; /* Bold */
}