CSS effect with floating and rotating squares
Also, it has a color-changing background. Check it out. <!-- https://codepen.io/alvarotrigo/pen/GRvYNax --> <style> @keyframes AnimateBG { 0%{background-position:0% 50%} 50%{background-position:100% 50%} 100%{background-position:0% 50%} } .context { width: 100%; position: absolute; top:50vh; } .context h1{ text-align: center; color: #fff; font-size: 50px; }…