@charset "utf-8";

/* reseteo */
* {
  box-sizing: border-box;
}

/* selector "raiz" */
   :root {

    /* se guardan los colores del proyecto */
    --color-textos: #000000;
    --color-textos-secundarios: #FFFFFF;
    --color-fondos: #FFFFFF;
    --color-1: #9CFFD0;
    --color-2: #66BDA9;
    --color-3: #04916F;

    /* se guardan las tipografías */
    --tipo-titulos: 'Montserrat', sans-serif;
  
  }

body {
  margin: 0em;
  font-family: 'Montserrat', sans-serif;

  /* caja flexible */
  display: flex;
  /* direccion de los elementos */
  flex-direction: column;

}

h1 {
  font-size: 1.5em;
  color: #000000;
  text-align: center;
  font-weight: 750;
}

h2 {
  text-align: center;
  color: #FFFFFF;
  background-color: #078B53;
  border-radius: 0.3em;
  padding: 0.5em;
  margin-left: 1em;
  margin-right: 1em;
  font-weight: 700;
  font-size: .9em;
}

h3{
  text-align: center;
  color: #078B53;
  font-weight: 600;
  font-size: 1em;
}

h4{
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}


img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: #FFFFFF;
  font-weight: 400;
  font-size: .8em;
  background-color: #39C077;
  padding: 0.32em;
  border-radius: 0.3em;
  margin: auto;


}

li a{
  padding-block: 0.25em;
  padding-inline: 1em;
  margin: 1em;
  display: inline-block;
}

ul,
ol {
  list-style: none;
  padding-inline: 0;
  text-align: center;

}

.contenedora {
  width: min( 100%, 50rem );
  margin-inline: auto;
  padding: .5rem;
}

header {
  text-align: center;
  background-image: linear-gradient(180deg, #078B53, #40c077);
  box-shadow: 0 1px 5px rgb(0 0 0 / 30%);
  padding: 0.5em;
}

footer {
  background-color: #078B53;
  color: #FFFFFF;
  padding: .8em;
  text-align: center;
  font-size: .9em;
  background-image: linear-gradient(180deg, #40c077, #078B53);
  box-shadow: 0 1px 5px rgb(0 0 0 / 30%);
}

video {
  width: 100%;
  height: auto;
}

header nav ul {
  margin-block: 0.5em;
  display: flex;
  flex-direction: column;
  align-items: center;
}

header nav a {
  color: #078B53;
  background-color: #FFFFFF;
  display: block;
  width: max-content;
  margin: .25em;
  padding-block: .25em;
  padding-inline: 1em;
  border-radius: .25em;
  
}

header nav a:hover {
  background-color: #078B53;
  color: #FFFFFF;
}

p{
  text-align: center;
  font-weight: 350;
  font-size: 1em;
  margin: 0em;
  padding: 0.5em;
}



.estudiante {
  text-align: center;
  border-radius: 3em;
  padding: 0.5em;
  margin-top: 0.5em;

}

.estudiante img {
  border-radius: 50%;
  width: 8em;
  aspect-ratio: 1;
}


.estudiante a {
  background-color: #39C077;
  color: #FFFFFF;
  border-radius: .25em;
  padding-block: .25em;
  padding-inline: 1em;
  margin: 1em;
}


#datos {
  padding: 1em;
  font-size: .8em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
}


#datos img {
  max-width: 13em;
}

footer p {
  margin-block-end: 0;
}

/* --------------------------
   media queries,
   -------------------------- */


/* cambios a partir de los 480px */
@media (min-width: 480px) {


  .botones ul,
  ol {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
  }

  #logos {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: nowrap;
  }

  #integrantes{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
  }

  #datos {
    flex-direction: row;
    justify-content: center;
    gap: 1em 1em;
    flex-wrap: wrap;
  }
}

/* tableta */
@media (min-width: 768px) {

  header nav ul {
    margin-block: 0.5em;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

  }  

  #integrantes{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
  }


  #logos {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
}


/* escritorio */
@media (min-width: 1200px) {



  #datos {
    flex-direction: row;
    justify-content: center;
    gap: 1em 1em;
    flex-wrap: nowrap;
  }


}