/* -- SCROLL INDICATOR -- */
.scroll-indicator {
    transform: translateX(-50%);
    font-size: 20px; /* Adjust the size of the chevron */
    color: white; /* White chevron */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);

    opacity: 0;
    animation: fadeIn 1.5s ease-in-out 1.5s 1 normal forwards;
}

/* -- ANIMATIONS -- */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
      transform: translateY(0);
    }
    40% {
      transform: translateY(10px);
    }
    60% {
      transform: translateY(5px);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
