In the <p>
tag, I have some text.
This is my current CSS for the <p>
tag:
p {
max-width:1000px;
text-align:center;
font-family: "Avant Garde", Avantgarde, "Century Gothic", CenturyGothic, "AppleGothic", sans-serif;
}
As you can see, the text is centered and has a maximum width of 1000px, preventing it from stretching all the way across the screen.
I'm not sure what other styles to add to improve this. Any suggestions on how to fix it?