/* Footer */
footer {
  background: #61606069;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 50px; 
  position: relative;
}
footer a {
  color: white;
  text-decoration: none;
  transition: opacity 0.2s;
}
footer a:hover {
    opacity: 0.8;
}
footer .container {
  max-width: 1200px;
  margin: 0 auto;
}

footer p {
  margin: 0;
  width: 100%;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.1), transparent);
}