body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
padding: 0;
background-color: #0f0f0f;
color: #f2a900;
font-family: 'Lucida Console', Monaco, monospace;
font-size: 33px;
}
#manifesto {
text-align: justify;
max-width: 600px;
padding: 25px;
overflow-y: auto;
max-height: 80vh;
}
@keyframes rotateAnimation {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
.rotating {
animation: rotateAnimation 30s infinite linear;
}