
.encabezadoGrilla
{
  text-align: center;
  font-weight: 500;
  font-size: 40px;
  color: #e30079;
  margin-bottom: 0px;
}



.container
{
    display: flex;
    justify-content: center;
}

.imgPrincipal{
  max-width: 100%;
  max-height: calc(85dvh);
}


/* Grilla*/
.grilla{
  width: 100%;
  display: grid;
  /* Temporal para armarlo */
  /* background-color: grey; */
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  /* grid-template-rows: 1fr 1fr; */
  gap: 20px;
  max-width: 1000px;
  /* Centrar */
  /*margin: todos*/
  /*margin: arriba-abajo laterales*/
  /*margin: arriba laterales abajo*/
  /*margin: arriba derecha izquierda abajo*/
  margin: 35px auto 20px;
}

.grilla a 
{
  text-decoration: none;
}

.curso
{
  /* display: flex;
  flex-direction: column;
  justify-content: center; */
  /* border: none; */
  border-radius: 10px;
  background-color: white;
  padding: 5px;
  transition: 
    border 0.5s,
    background-color 0.5s,
    transform 0.5s;
}

.curso:hover 
{
  /* border: 1px solid black; */
  background-color: #f3f3f3;
  transform: scale(1.05);
}

.curso > img
{
  max-width: 100%;
  border-radius: 10px;
}

.curso > p {
  color: #e30079;
  text-align: center;
  font-weight:500;
}





  