.button-style {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 10px;

  @media (max-height: 750px) {
    gap: 8px;
    align-items: flex-start;
  }
}

.btn {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 240px;
  border-radius: 6px;
  border: 1px solid var(--Primary-600, #2f689d);
  background-color: rgba(243, 243, 243, 0.85);
  color: var(--Grey-900, #333);
  text-align: center;
  text-decoration: none;
  font-size: 13px;
  font-family: 'Roboto', arial, sans-serif;
  animation: bn53bounce 5s infinite;
  margin: unset;
  padding: unset;
}

.btn a {
  display: block;
  padding: 4px 5px;
  width: 100%;
}

.btn:hover {
  animation: unset;
  background-image: var(--Primary-700-gradient, linear-gradient(50deg, #4692d3, #b0d2f3));
}


@keyframes bn53bounce {

  5%,
  50% {
    transform: scale(1);
  }

  10% {
    transform: scale(1);
  }

  15% {
    transform: scale(1);
  }

  20% {
    transform: scale(1) rotate(-5deg);
  }

  25% {
    transform: scale(1) rotate(5deg);
  }

  30% {
    transform: scale(1) rotate(-3deg);
  }

  35% {
    transform: scale(1) rotate(2deg);
  }

  40% {
    transform: scale(1) rotate(0);
  }
}