I already have custom css to move the "spin again" button up at the Slots game, so I don't have to scroll down every time on my laptop. Does anyone know if that's possible with the Random button at the Snowtapult too, for the same reason? I tried changing the code from the slots one to use at the snowtapult, but it didn't work, most likely because I don't know the slightest thing about css. :P
Could you post the code you use for the slots?

Sure, it's the one below. I just tried by replacing "spin again!" by "random", but that didn't do anything.
input[value="Spin again!"] {position:absolute; top:230px; margin:0 -38px; z-index:999;}
I just tried that and it worked. Make sure random is capitalized and you don't have the exclamation point

Aaah, I had no idea it was case sensitive! Capitalizing it worked, thank you so much!
No problem :)
That code will affect any input with the text "Random", so it might mess up other pages where "spin again" was safe. If you have that problem I can teach you how to make that CSS selector more specific.
I thought it put the button in a kind of funny spot. If you want to add a left:__px property and/or mess with the top: value to change the position slightly, I'm happy to help with that too--but it's cool if you don't wanna keep messing with it haha

I have been messing with the top value, but I didn't think about the left thing. I'll add that now and try messing with it a bit more. You've been super helpful, thank you! (I haven't seen anything else getting messed up with random, but if so, I'll know who to contact for help now. :P)