footer * {
  color: #f6f7eb;
}

footer {
  background-color: #2c3e50;
  padding: 2rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  margin-top: 5dvh;
}

footer h3 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.link-out {
  color: #fff;
  text-decoration: none;
  margin-bottom: 1.2rem;
  transition: color 0.3s ease;
}

@media (hover:hover ) {
  .link-out:hover {
    color: #3498db;
  }
}