#sparkle-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.sparkle {
    position: absolute;
    width: 30px;
    height: 30px;
    background-image: url('https://png.pngtree.com/png-clipart/20221216/original/pngtree-light-effect-ray-glitter-twinkle-glitter-sparkling-star-glow-glow-sparkle-png-image_8749624.png'); /* Замените на URL изображения */
    background-size: contain;
    opacity: 0;
    animation: sparkle-animation 2s infinite ease-in-out;
}

@keyframes sparkle-animation {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    50% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(0.5);
        opacity: 0;
    }
}


.scroll-container {
    position: relative;
    height: 350px; /* Установите начальное значение высоты */
    overflow: hidden; /* Скрываем часть изображения, которая выходит за пределы контейнера */
    border-radius: 20px; /* Задайте радиус скругления по желанию */
    background: rgba(255, 255, 255, 0.8); /* Цвет фона для эффекта */
    box-shadow: 4px 4px 10px rgba(128, 0, 52, 0.5); /* Тень только на правую сторону */
}

.scroll-image {
    position: absolute;
    top: 0; /* Начинаем с верхней части контейнера */
    width: 100%; /* Ширина изображения */
    animation: scroll 130s linear infinite; /* Измените это значение для настройки скорости прокрутки */
}

@keyframes scroll {
    0% {
        transform: translateY(0); /* Начинаем с верхней части контейнера */
    }
    50% {
        transform: translateY(calc(-100% + 500px)); /* Прокручиваем вниз на высоту контейнера */
    }
    100% {
        transform: translateY(0); /* Возвращаемся к начальной позиции */
    }
}



#animated-line path {
  stroke-dasharray: 5000; /* Значение должно быть больше длины пути */
  stroke-dashoffset: 5000; /* Начальное состояние линии (полностью скрыто) */
  animation: draw-line 10s linear forwards;
   animation-delay: 1s; /* Задержка 2 секунды перед началом анимации */
}

@keyframes draw-line {
  to {
    stroke-dashoffset: 7;