CSS is used to define styles for your web pages, including the design, layout and variations in display for different devices and screen sizes.
A CSS rule-set consists of a selector and a declaration block:
Selector { property: value}
body {
background-color: lightblue;
}
h1 {
color: white;
text-align: center;
}