body{
    background-color: rgb(200, 168, 230);
}
ul{
   
    list-style-type: square;
    list-style-type: circle;
    
}
ol{
    list-style-type:lower-greek;
    background-color: rgb(108, 76, 196);
}
ol li{
    background-color: rgb(190, 149, 243);
    margin: 4px;
}
ol li:nth-child(2n-1){
    background-color: rgb(115, 195, 209);
}
h1{
    color: rgb(27, 11, 43);
}