Can't center text after setting max-width

I wanted to center some text with them having a max-width of 65 characters but when I set max-width: 65; my text can't be centered and they go to the left of the screen
* {
padding: 0;
margin: 0;
font-family: "Courier New", monospace;
text-align: center;
background-color: black;
color: white;
}

h1 {
margin: 3rem 0;
}

p {
max-width: 65ch;
text-align: center;
}
* {
padding: 0;
margin: 0;
font-family: "Courier New", monospace;
text-align: center;
background-color: black;
color: white;
}

h1 {
margin: 3rem 0;
}

p {
max-width: 65ch;
text-align: center;
}
2 Replies
Mannix
Mannix4w ago
add margin-inline:auto; to the p
Zed
Zed4w ago
wait lemme do it woahhhhh btw what happened actually?