.stick {
    position: sticky;
    top: 0;
    animation: appear 0.1s forwards;
    animation-delay: 5s; /* Задержка 5 секунд */
    opacity: 0;
}

@keyframes appear {
    to {
        opacity: 1;
    }
}


.text_shadow{
    text-shadow: 1px 1px 2.5px rgba(0, 0, 0, 0.5);
}
.uc-text_shadow{
    text-shadow: 1px 1px 2.5px rgba(0, 0, 0, 0.5);
}