to center a div, you can use CSS flexbox, CSS grid, or apply auto margins to the left and right. Here are brief examples:
Flexbox:
.parent {
display: flex;
justify-content: center;
align-items: center;
}
Grid:
.parent {
display: grid;
place-items: center; } Auto margins: .center-div { margin-left: auto; margin-right: auto; }