body{
    background-color: antiquewhite;
}

h1{
    color: black;
    text-align: center;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 44px;
}

ul {
    list-style-type: circle;
    list-style-type: decimal;
    list-style-image: url(../lista.png);
}

ol{
    list-style-type: square;
    background-color: rgb(218, 142, 214);
}

ol li{
    background-color: rgb(148, 114, 128);
    margin: 5px;
}

ol li:nth-child(2n-1){
    background-color: rgb(145, 170, 216);
}