@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

.scroll-arrow {
    display: inline-block;
    animation: bounce 2s infinite ease-in-out;
    cursor: pointer;
    transition: opacity 0.3s;
}

.scroll-arrow:hover {
    opacity: 0.7;
}

.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  
  /* Fix for mobile devices that don't support background-attachment: fixed well */
  @media (max-width: 768px) {
    .parallax-bg {
      background-attachment: scroll;
    }
  }

  
  