/*Iconos de las redes sociales*/

.container-redes {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
}

.container-redes a {
  margin-top: 4px;
}

.container-redes img {
  width: 60px;
  padding: 4px;
  background: rgba(0, 0, 0, 0);
  cursor: pointer;
  border-radius: 100%;
  transition: all 300ms;
}

.container-redes a:hover img {
  background: rgba(0, 0, 0, 0.1);
}
