You are given this HTML: Section TitleThis paragraph comes…

You are given this HTML: Section TitleThis paragraph comes right after the heading.This is another paragraph below it. This paragraph is inside a div. Write CSS rules that: Turn only the paragraph immediately following an to bold and dark red (3pts). Turn all other paragraphs that come after the (but are not inside the ) to gray and italic (3pts). Make sure the paragraph inside the is not affected by these rules (1pt).

Create a simple CSS animation for a button: Hover Me! Your C…

Create a simple CSS animation for a button: Hover Me! Your CSS should: When hovered, smoothly change the button’s background color from blue to green over 0.5 seconds (2pts). On hover, also scale the button up slightly (1.1×) using a transform and transition (2 pt). Create a keyframe animation that makes the button pulse (grow and shrink) continuously when it has a class active. Use @keyframes and animation properties to achieve this (2pts).