.text-block {
    display: inline-block;
    background-color: #f0f0f0;
    padding: 20px;
    text-align: left;
    border: 4px solid black;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

/* center ONLY the top beliefs block */
body > .text-block {
    display: table;       /* enables auto horizontal centering without fixed width */
    margin: 0 auto;       /* centers it */
}


.text-block h2 {
    margin: 0 0 20px;
    font-size: 1.5em;
    color: #333;
}

.text-block ul {
    margin: 0;
    padding-left: 20px;
    list-style-type: none;
}

.text-block li {
    font-size: 1.2em;
    margin: 10px 0;
    color: #555;
}