<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rotating Image</title>
<style>
body {
margin: 0;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background: transparent; /* Transparent background */
}
img {
width: 300px; /* Adjust size as needed */
height: auto;
animation: rotate 5s linear infinite; /* Rotate animation */
}
@keyframes rotate {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
</style>
</head>
<body>
<img src="just_stuff.png" alt="Just Stuff">
</body>
</html>