a.nosotros {
  font-weight: bold;
}

main {
  height: 700px;
}

.contenido {
  height: calc(700px - 87px);
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
  margin-top: 2%;
}
.imagen-tienda {
  width: 40%;
  height: 85%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.imagen-tienda img {
  width: 100%;
  height: 90%;
  max-width: 900px;
}
.informacion-empresa {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  width: 50%;
  height: 85%;
}

.subtitulo {
  font-size: 24px;
  color: rgb(49, 48, 48);
}

.logo-empresa {
  width: 35px;
  height: 90%;
}

.nombre-empresa {
  font-size: 28px;
  color: black;
}

.primera-parte {
  font-style: italic;
  font-weight: bold;
}

.redes-sociales {
  width: 20%;
  height: 5%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
}

.redes-sociales a {
  height: 90%;
  width: 20%;
}

.redes-sociales img {
  width: 100%;
  height: 100%;
}

.redes-sociales a:hover {
  width: 22%;
  height: 95%;
}

/* Media query para poder ajustar el formato de la página, cuando el ancho sea menor de 600px. */
@media screen and (width < 600px) {
  main {
    height: 1000px;
  }
  section.contenido {
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
  }
  div.imagen-tienda {
    width: 95%;
    height: 35%;
  }
  .informacion-empresa {
    width: 95%;
    height: 60%;
  }
  .subtitulo {
    font-size: 22px;
  }
  .nombre-empresa {
    font-size: 25px;
  }
  .redes-sociales {
    align-self: center;
    width: 30%;
  }
  .redes-sociales a {
    width: 30%;
    height: 95%;
  }
  .redes-sociales a:hover {
    width: 34%;
    height: 100%;
  }
}
