.animated-link-button {
      display: inline-block; 
      background-color: #437bc5; 
      color: white !important; 
      text-decoration: none; 
      padding: 4px 8px; 
      font-size: 12px; 
      border-radius: 3px; 
      cursor: pointer; 
      transition: transform 0.2s ease, background-color 0.3s ease; 
}

.animated-link-button:hover {
      transform: scale(1.05); 
      background-color: #35609c;
}

@media (max-width: 600px) {
      .animated-link-button {
        font-size: 10px;
        padding: 3px 6px;
      }
}