body {background-color: rgb(225, 142, 142);}
ul {
    -list-style-type: none;
    -list-style-type: circle;
    -list-style-type: square;
    list-style-image: url("../lista.png");
}

ul {
    list-style-type: circle;
    background-color: rgb(104, 215, 234);
    padding: 25px;
    list-style-position: inside;
}

ul li {
    background-color: rgb(165, 222, 253);
    margin: 5px;
    padding: 5px;
}

ul li:nth-child(2n-1) {background-color: rgb(27, 196, 153);}

ol {
    list-style-type: upper-roman;
    background-color: rgb(2, 74, 8);
    padding: 25px;
    list-style-position: inside;
}

ol li {
    background-color: rgb(68, 185, 29);
    margin: 5px;
    padding: 5px;
}

ol li:nth-child(2n-1) {background-color: rgb(79, 194, 108);}