CSS Border Radius
- This property lets us round the corners of the background-color, background-image, and the border.
p {
border: 1px solid #333;
border-radius: 12px; /* every corner uses a circle of 12px radius to create the corners */
border-radius: 12px 64px; /* horizontal radius is 12px, vertical radius is 64px */
}