Credits page - I couldn't have made it without y'all

Websites I use:

Neocities stamps and other decorative thingys (credits):

Code stuffs!

ps: for some of these I have NO idea where I got them from. Just for the record, they're from tutorials and such, none of these are stolen. I do not condone stealing code from others that's just shitty ngl. Reach out if you have any information.

Scrolling text:

.buttons{
overflow: hidden;
transform:translateX(100%);
/* Apply animation to this element */
animation: scroll-left 25s linear infinite;
}

/* Move it (define the animation) */
@keyframes scroll-left {
0% {transform: translateX(100%);}
100% {transform: translateX(-100%);}
}