/* GENERAL */

* {
  box-sizing: border-box;
 }

body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: #000000;
  background-color: #fafafa;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

h1{
  font-family: Montserrat, Helvetica, sans-serif;
  padding: .5rem;
  background-color: #000;
  font-size: 4.5rem;
  color: #fff;
  text-align: center;

}

h2 {
  font-family: Montserrat, Helvetica, sans-serif;
  font-weight: 500;
  text-align: center;
  font-size: 1.875rem;
}

h3 {
  font-family: Montserrat, Helvetica, sans-serif;
  font-weight: 800;
  text-align: center;
  font-size: 2.5rem;
}



p {
  text-align: center;
  font-size: 1rem;
  line-height: 1.2rem;
}

.contenedor {
  width: min(75rem, clamp(100vw - 40px, 100vw - 20vw, 100vw - 400px));
  margin-inline: auto;
}

ul,
  ol {
    list-style: none;
    padding: 0;
  }

/* Header */

header {
  background: #000000;
  padding-block: 1rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .contenedor {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo {
  height: 2.2rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

header .logo img {
  height: 100%;
  width: auto;
  display: block;
}

header nav a {
  display: inline-block;
  width: fit-content;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  padding-block: 1rem;
  padding-inline: 1rem;
  transition: all 0.3s ease;
}

nav a:hover {
  color: #000;
  background-color: #fff;  
}

header nav ul {
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}


/* Comitente */ 

/* Equipo */ 

.integrantes{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(22em, 100%), 1fr));
  gap: .5em;
  justify-items: center;
  align-items: center;
}

.integrantes img {
  width: 20rem;
  height: 30rem;
  object-fit: cover;
}

.linktegrantes{
  text-align: center;
  text-decoration: none;
  color: black;
  transition: all 0.3s ease;
  padding: .5rem;
}

.linktegrantes:hover {
  color: #ffffff;
  background-color: #000000;  
}

/* Datos academicos */ 

.datosacademicos{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(22em, 100%), 1fr));
  gap: 2rem;
}

.datoacade {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: left;
  align-items: center;
  justify-content: center;
  border: #000000 2px solid;
  border-radius: 2rem;
  padding: 1.5rem;
}

.datoacade h4,p {
 text-align: left;
}


.datosacademicos img {
  width: auto;
  height: 4rem;
  object-fit: cover;
}

footer {
  background-color: #000;
  color: #fff;
  padding: 1rem 0;
  margin-top: 2rem;
  font-size: .875rem;
  text-align: center;
}
.footerp {
  text-align: center;
}