.container_estudio {
  margin: 15px;
  display: flex;
  flex-direction: column;
}
.linea {
  margin: 15px;
  padding: 15px;
  display: flex;
  justify-content: space-between;
}
#imagen_container {
  padding: 20px;
  width: 50%;
}
.imagenn {
  height: 100%;
  width: 100%;
  object-fit: cover;
  box-shadow: 2px 2px 15px rgb(177, 177, 177);
  object-position: 40%;
}
.imagenn2 {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: 30% 50%; 
  box-shadow: 2px 2px 15px rgb(177, 177, 177);

}
#descripcion_container {
  color: black;
  padding: 20px;
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.parrafo {
  padding: 15px;
  width: 100%;
  text-align: center;
}
.titulo {
  font-size: 24px;
  font-weight: bold;
}
#lista {
  list-style-type: none;
}

@media only screen and (max-width: 900px) {
  .linea {
    flex-direction: column;
  }
  #imagen_container {
    width: 100%;
  }
  #descripcion_container {
    width: 100%;
  }
}
