.inicio {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #89225a;
  height: 100vh;
}

.card-inicio {
  background-color: white;
  width: 50rem;
  height: 60rem;
  border-radius: 20px;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 5px 5px 30px 7px rgba(0, 0, 0, 0.25), -5px -5px 30px 7px rgba(0, 0, 0, 0.22);
}

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

.logo-ieep {
  width: 100px;
}

.logo-conoceles {
  width: 100px;
}

.texto-inicio {
  margin: 4rem 0;
  padding: 0 8rem;
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
}

.btns-inicio {
  background-color: #89225a;
  border-radius: 2rem;
  color: white;
  height: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 4rem;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  transition: transform .2s;
  /* Animation */
}

.btns-inicio a {
  color: inherit;
  text-decoration: inherit;
  font-size: 2.4rem;
}

.btns-inicio:hover {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}

.closeI {
  display: grid;
  margin-right: 120px;
  margin-top: 80px;
  color: white;
  align-items: center;
  justify-content: center;
  font-size: x-large;

}

.cabecera {
  display: grid;
  grid-template-columns: 20% auto 20%;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 50px;
  align-items: center;
  justify-content: space-between;
  color: white;
}


.cabecera img {
  width: 300px;
  margin-left: 80px;
}



.logo-voto {
  width: 10%;
  height: 10%;
  margin-top: 70px;
  border-radius: 10px;
}



.texto-seleccione {
  display: grid;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 30px;
  align-items: center;
  justify-content: center;
  color: white;
}

.cards-list {
  z-index: 0;
  width: 100%;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.card {
  margin: 30px auto;
  width: 300px;
  height: 300px;
  border-radius: 40px;
  box-shadow: 5px 5px 30px 7px rgba(0, 0, 0, 0.25), -5px -5px 30px 7px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  transition: 0.4s;
}

.card .card_image {
  width: inherit;
  height: inherit;
  border-radius: 40px;
}

.card .card_image img {
  width: inherit;
  height: inherit;
  border-radius: 40px;
  object-fit: cover;
}

.card .card_title a {
  color: white;
}

.card .card_title {
  text-align: center;
  /*border-radius: 0px 0px 40px 40px;*/
  font-family: sans-serif;
  font-weight: bold;
  font-size: 30px;
  margin-top: 80px;
  /*height: 40px;*/
}

.card:hover {
  transform: scale(0.9, 0.9);
  box-shadow: 5px 5px 30px 15px rgba(0, 0, 0, 0.25),
    -5px -5px 30px 15px rgba(0, 0, 0, 0.22);
}

.title-white {
  color: white;
}

.title-black {
  color: black;
}

@media screen and (max-width: 1500px) {
  .titulo-conoceles {
    font-size: 40px;
  }
}

@media all and (max-width: 500px) {
  .card-list {
    /* On small screens, we are no longer using row direction but column */
    flex-direction: column;
  }
}



.card {
  margin: 30px auto;
  width: 300px;
  height: 300px;
  border-radius: 40px;
  /*background-image: url('https://i.redd.it/b3esnz5ra34y.jpg');*/
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 5px 5px 30px 7px rgba(0, 0, 0, 0.25), -5px -5px 30px 7px rgba(0, 0, 0, 0.22);
  transition: 0.4s;
}