9 lines
203 B
CSS

/* a red background, white text, a font size of 32px, center aligned, and bold */
div {
background-color: red;
font-size: 32px;
color: white;
text-align: center;
font-weight: bold;
}