body { background-color: black; color: cyan; font-family: Victor Mono; } .container { width: 100%; display: flex; flex-direction: column; align-items: center; padding: .5rem; } .game { width: 80%; height: 100%; } .feats { } .feat { margin-bottom: .5rem; width: 100%; text-align: left; display: flex; justify-content: flex-start; align-items: flex-start; animation-name: textColorPalette; animation-duration: .4s; animation-iteration-count: infinite; } img { margin-right: 1rem; } @keyframes textColorPalette { 0% { color: #bd00ff; } 25% { color: #fcee0c; } 50% { color: #00ff9f; } 75% { color: #d600ff; } 100% { color: #00b8ff; } }