body { animation: theme 21s linear infinite; &:after, &:before { content: ''; display: block; position: fixed; z-index: -1; top: 0; width: 100vw; height: 100vh; width: 100vmax; height: 100vmax; background: rgba(0, 0, 0, 0.123); animation: background 90s linear infinite; } &:after { left: 15vw; } &:before { right: 15vw; animation-delay: -30s; animation-direction: reverse; } } @keyframes theme { 0% { background: #1e1642; } 100% { background: #1e1642; } } @keyframes background { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }