<@html> <@/html> <@style> #rotatingLogo{ display: flex; max-width: 100%; } .rotateable{ max-width: 250px; } .textLogo{ max-width: 100%; } .rotateable{ animation: rotate 3600s linear infinite; } @keyframes rotate{ from{transform: rotate(0deg);} to{transform: rotate(360deg);} } @media screen and (max-width: 800px){ #rotatingLogo{ flex-direction: column; align-items: center; } } <@/style>