@view-transition {
    navigation: auto;
}

@keyframes infinitescroll {
    0% {
        transform: translateY(0); /* Start at the top */
    }

    100% {
        transform: translateY(-100%); /* Move up by 50% of the content height */
    }
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.no-scrollbar {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

a:hover{
    text-decoration: underline;
    text-underline-offset: 8px;
}

::selection {
    background: #e3e31a;
}