* {
    margin: 0px;
}

ol {
    background-color: white;

    border: 1px solid;
}

ol li:nth-child(odd) {
    background-color: lightgray;
}

ol li:nth-child(even) {
    background-color: lightblue;
}