body {
    align-items: center;
    text-align: center;
    justify-content: center;
}
img {
  display: block;
  margin: auto;
}
div {
    /*border: 1px solid black; */
    max-width: fit-content; 
    margin-left: auto;
    margin-right: auto;
}
p {
    font-family:Georgia, Calibri;
}
ul {
    list-style-position: inside; /* Positions the bullets inside the content flow */
    text-align: left;         /* Centers the text and the bullets within the UL */
    width: fit-content;         /* Optional: makes the list container only as wide as its content to keep the list from stretching the full width of the page */
    margin: 0 auto;             /* Optional: centers the UL block itself on the page */
}