Hi Florian!
Sure! Have a look here:
https://www.w3schools.com/cssref/css3_pr_transform.asp
div {
-ms-transform: rotate(7deg); /* IE 9 */
-webkit-transform: rotate(7deg); /* Chrome, Safari, Opera */
transform: rotate(7deg);
}
you can add the code to your custom CSS.
Good luck!
Marius