Idk if this is what you were looking for but here's the code to make the profile float ^_^
code:
main {
background-color: *insert ur color here*
color: *insert ur color here*
animation: floating 3s ease-in-out infinite
}
.floating {
animation-name: floating;
animation-duration: 3s;
animation-iteration-count: infinite;
animation-timing-function: ease-in-out;
margin-left: 30px;
margin-top: 5px;
}
@keyframes floating {
0% { transform: translate(0, 0px); }
50% { transform: translate(0, 15px); }
100% { transform: translate(0, -0px); }
}
hope this helped X3