Heres a tip! if you want animations put the text below in your style and find the class of an area of the page eg body{} or .profile{} and add the css for it (you can copy the animation names from https://animate.style/)
example code (this gives your whole profile a fade in effect)
<style>
@import url('https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css'); /* Required Stylesheet */
.profile{
animation: fadeIn;
animation-duration: 2s;
}
</style>