.lat-zoom-button {
        display: inline-block;
        padding: 12px 28px;
        font-size: 20px;
        font-weight: bold;
        text-decoration: none;
        color: white;
        background-color: #e53935;
        border: none;
        border-radius: 8px;
        animation: lat-zoom 1.5s infinite;
        transition: background-color 0.3s;
        margin-bottom: 10px;
      }

      .lat-zoom-button:hover {
        background-color: #c62828;
      }

      @keyframes lat-zoom {
        0%   { transform: scale(1); }
        50%  { transform: scale(1.07); }
        100% { transform: scale(1); }
      }

      .lat-arrow {
        display: inline-block;
        animation: lat-moveArrow 0.8s infinite alternate;
        color:white;
      }

      @keyframes lat-moveArrow {
        0%   { transform: translateX(0); }
        100% { transform: translateX(5px); }
      }

      .lat-arrow-left {
        animation-direction: alternate-reverse;
      }

      .lat-text {
        padding: 0 10px;
        color:white;
      }