Hey Spacefolks,
I know we're living like it's 2005, but let's not forget that it's 2021! When you're crafting your CSS, make sure you use media queries to target mobile devices or smaller screens. For my profile, I have a media query set for 600px or smaller, which should cover most use cases.
@media only screen and (max-width: 600px){
.class { thing }
}
This will make things nicer for when people are on their phones checking out your profile!