@import url("tiers.css");
footer {
  background-color: transparent;
  border-top: 2px solid #2e3b5e;
  color: #aaa;
  text-align: center;
  padding: 15px 0;
  font-size: 0.9rem;
  animation: 
  float 3s ease-in-out infinite;
}

footer a {
  color: #6590f5;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}   

@keyframes float {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-8px) scale(1.01);
  }
}
