.scroll-down-indicator {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;

    background: rgba(0,0,0,0.75);
    color: #fff;

    padding: 12px 22px;
    border-radius: 50px;

    text-align: center;

    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.scroll-down-indicator span {
    display: block;
    font-size: 15px;
    font-weight: 600;

    text-shadow:
        0 1px 3px rgba(0,0,0,0.9),
        0 0 5px rgba(0,0,0,0.8);
}

.scroll-arrow {
    font-size: 28px;
    line-height: 20px;
    animation: bounce 1.5s infinite;
}

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

    50% {
        transform: translateY(8px);
    }
}