.introduccion-contenedor-principal {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;

  width: 100%;
  background-color: var(--ligth-color);
  border-radius: 10px;
  padding: 1%;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px,
    rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

.introduccion-img {
  width: 38%;
  height: 60vh;
  object-fit: cover;
  border-radius: 10px;
  margin: 1%;
}

.introduccion-contenedor-texto {
  margin: 1%;
  width: 58%;
  background-color: var(--ligth-color);
  border-radius: 10px;
}

.introduccion-contenedor-texto {
  font-size: 1.5em;
  line-height: 1.3em;
  color: var(--dark-color);
}

.introduccion-contenedor-texto h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
}

.inicio-contenedor-mensaje {
  font-size: 1rem;
  font-style: italic;
  margin-top: 1.1rem;
  text-align: right;
  line-height: 1.15em;

  display: flex;
  justify-content: end;
}

.inicio-contenedor-autor {
  display: flex;
  justify-content: end;
  align-items: center;
}

.inicio-autor {
  font-size: 1.2rem;
  font-style: italic;
}

.inicio-imagen-autor {
  width: 60px;
  border-radius: 50%;
  margin: 1rem 1rem 0 1rem;
}

@media only screen and (max-width: 768px) {
  .introduccion-contenedor-principal {
    flex-direction: column;
    align-items: center;
  }

  .introduccion-img {
    width: 95%;
    height: auto;
    margin: 1%;
    border-radius: 10px;
  }

  .introduccion-contenedor-texto {
    margin: 1%;
    width: 95%;
  }

  .inicio-contenedor-autor {
    justify-content: center;
  }
}
