/* centralize.css */

/* Force all section headings & buttons to be centered */
section h1,
section h2,
section h3,
section h4,
section h5,
section h6 {
    text-align: center !important;
}

section p,
section .lead {
    text-align: center !important;
}

/* Center buttons inside sections */
section a.btn,
section button {
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
}

/* Ensure images in sections are centered */
section img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
/* centralize.css */

/* Force all section headings & paragraphs to be centered */
section h1,
section h2,
section h3,
section h4,
section h5,
section h6 {
    text-align: center !important;
}

section p,
section .lead {
    text-align: center !important;
}

/* Center buttons inside sections */
section a.btn,
section button {
    display: block;              /* Makes them behave like block elements */
    margin: 15px auto;           /* Centers horizontally */
    text-align: center;          /* Centers text inside button */
}

/* Ensure images in sections are centered */
section img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
