.mainTitle {
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    display: block;
    text-align: center;
    margin-top: 25px;
}
.subtitle {
    color: #ff5800;
    margin-left: 20px;
    margin-top: 20px;
    width: 100%;
}
.mainBody {
    text-align: justify;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    display: block;
    font-size: 20px;
    margin-top: 20px;
    margin-left: 20px;
    margin-right: 20px;
}
.mainImage {
    margin-left: auto;
    margin-right: auto;
    width: 70%;
    height: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
}
.listElement {
    font-size: 20px;
    list-style: disc;
    margin-top: 10px;
    margin-bottom: 10px;
}
.listElement::before {
    content: "\2022";  /* Add content: \2022 is the CSS Code/unicode for a bullet */
    color: #ff5800; /* Change the color */
    font-weight: bold; /* If you want it to be bold */
    display: inline-block; /* Needed to add space between the bullet and the text */ 
    width: 1em; /* Also needed for space (tweak if needed) */
    margin-left: -1em; /* Also needed for space (tweak if needed) */
}