Now in CSS, start by editing the body using margin: 0px; (This removes the default margins that may be applied by the browser), overflow: hidden (means that any content exceeding the bounds of the viewport will be hidden); display: flex; (it's used to center the content both vertically and horizontally on the page); justify-content: center (used to center elements horizontally along the main axis); align-items: center (used to center elements vertically along the cross axis); height: 100vh (This ensures that the body of the page occupies the full height of the viewport); background-color: #000 (page background as black);
Now let's define the animation for all of this hahaha :)
@ keyframes blink will define an animation rule with the name blink, obvious,this animation will occur between 0 to 100%.
Let's set the start of the animation with the color gold at 0% and the color red at 100%, which will make the letters blink like a Christmas tree.HAHA
And now, it's just a matter of waiting for the magic to happen :)