.custom-list {
    counter-reset: my-counter;
    list-style-type: none;
}

.custom-list li {
    counter-increment: my-counter;
    margin-bottom: 10px;
    padding-left: 20px;
}

.custom-list li:before {
    content: "(" counter(my-counter, lower-roman) ") ";
    margin-right: 5px;
}
li{
    line-height: 1.8;
}
.bold-text {
    /*font-weight: bold; /* Make the text bold */
    color: black; /* Set the text color to black */
    font-family: monospace;
    font-weight: lighter;
}