body{
    background-color: rgba(81, 114, 175, 0.688);
}
.encabezado{
    background-color: rgb(218, 100, 16);
    text-align: center;
    padding: 2em 0;
    color: white;
    margin-bottom: 4em;
    margin-top: 2em;
}
h1{
   font-size: 48px;
}
.grillaEscuelas {
  display: flex;
  gap: 2em;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2em;
  background-color: dimgrey;

}

.escuela {
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1.5em;
  width: 250px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  font-size: 24px;
   margin-bottom: 2em;
    margin-top: 3em;
}
.titulo {
  font-size: 1.4em;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.8em;
  text-align: center;
  border-bottom: 2px solid #ddd;
  padding-bottom: 0.5em;
}
.lista {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lista li {
  padding: 0.5em;
  border-bottom: 1px solid #eee;
  transition: background-color 0.3s;
  font-size: 22px;
}

.lista li:hover {
  background-color: #f0f0f0;
}

.bodyCursos {
  background-color: #1c5f20;
  padding: 2em;
}


