#footer {
  background-color: #333;
  color: #fff;
  padding: 20px;
  text-align: center;
}

#footer a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
  font-size: 1em;
}

#footer p {
  font-size: 1em;
  margin: 10px;
}

.logo-footer {
  display: block;
  margin: auto;
  height: auto;
  justify-content: center;
  align-items: center;
}

.menu-footer {
  display: flex;
  flex-direction: row;
  list-style: none;
  justify-content: center;
}

.social-icons-list {
  display: flex;
  flex-direction: row;
  list-style: none;
  justify-content: center;

}

.social-icon {
  display: inline-block;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.2) rotate(10deg);
}

@media (min-width: 768px) {
  .logo-footer {
    max-width: 20%;
  }
}


@media (min-width: 1200px) {
  .logo-footer {
    max-width: 10%;
  }
}