#chung { width:calc(75vh + 25vw); /* Ensures that the chungoid is just stretched enough, regardless of what platform you're using */ height: 200px; animation: rotation 1s; animation-timing-function: linear; animation-iteration-count: infinite; } @keyframes rotation { from { transform: rotate(0deg); } to { transform: rotate(359deg); } }