.download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.download-btn:hover {
    color: #fff;
    background-color: #000000;
}

.download-icon {
    width: 20px;
    height: 20px;
    position: relative;
}

.arrow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-color: #fff;
    clip-path: polygon(0 100%, 50% 0, 100% 100%);
    animation: arrow-animation 1s infinite ease-in-out;
}

.box {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 47%;
    background-color: #fff;
    animation: box-animation 1s infinite ease-in-out;
}

@keyframes arrow-animation {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(50%);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes box-animation {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-47%);
    }
    100% {
        transform: translateY(0);
    }
}