Style pages with selectors, the box model, flexbox, and more.
A tag name selects every matching element; color sets text color.
p {
color: teal;
}padding is space inside the border; margin is space outside it.
.card {
padding: 20px;
border: 1px solid black;
}display: flex turns on flexbox; justify-content aligns children along the row.
.row {
display: flex;
justify-content: center;
}font-size sets text size; text-align: center centers it horizontally.
h1 {
font-size: 32px;
text-align: center;
}:hover applies a style only while the mouse is over the element.
.link:hover {
color: orange;
}