@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*, *::before, *::after {
  box-sizing: inherit;
}

* {
  margin: 0;
  padding: 0;
}

html {
  box-sizing: border-box;
  font-size: 62.5%;
  height: 100%;
}

body {
  font-size: 1.5rem;
  font-family: 'Alata', sans-serif;
  background-color: #fff;
  color: #000;
  font-weight: 400;
}

/*---- CABECERA ----*/

header {
  flex-direction: row;
  justify-content: space-between;
  background-color: #a13f36;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
}

header .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

header .logo img {
  height: 60px;
  margin-left: 50px;
  margin-top: 5px;
}

header nav {
  display: flex;
  text-align: center;
  padding-bottom: 25px;
  position: relative; 
  z-index: 1;
}

header label,
header a {
  padding: 5px 12px;
  text-decoration: none;
  font-weight: bold;
  color: white;
}

header label:hover,
header a:hover {
  color: rgb(108, 103, 119);
}

header nav label:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 3px;
}

/*--- GENERAL ----*/



#inicio:checked ~ nav label.inicio,
#sources:checked ~ nav label.sources,
#proyectos:checked ~ nav label.proyectos,
#reconocimientos:checked ~ nav label.reconocimientos,
#miembros:checked ~ nav label.miembros,
#contacto:checked ~ nav label.contacto,
#about:checked ~ nav label.about {
  color: #fff;
}

input[type="radio"] {
  display: none;
}

/* TEXTO */
a, a:visited, a:hover {
  text-decoration: none;
}

li {
  list-style: none;
}

h1{
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 45px;
  line-height: 5;
}
h2, h3 {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
}

p {
  font-weight: 500;
}

section .content {
  display: none;
  margin: 0;
  padding:  4rem 4rem 4rem 4rem;
}

.espaciador {
  height: 3cm;
  width: 100%;
}

/* seccion para conectar ids con secciones */
#inicio:checked ~ section .content-1,
#sources:checked ~ section .content-2,
#proyectos:checked ~ section .content-3,
#reconocimientos:checked ~ section .content-4,
#publicaciones:checked ~ section .content-5,
#miembros:checked ~ section .content-6,
#contacto:checked ~ section .content-7 {
  display: block;
}

@media (max-width: 768px) {
  section .content {
    padding: 1rem;
  }
}

@media (min-width: 768px) {

  header .container {
    flex-direction: row;
    justify-content: space-between;
  }

  header nav {
    flex-direction: row;
    padding-bottom: 0;
    padding-right: 20px;
  }

} 