body {background-color: rgb(36, 36, 153);}
ul {
    list-style-type: circle;
}

ul {
    list-style-type: square;
    background-color: gold;
    list-style-position: inside;
    padding: 100px;
}

ul li {
    background-color: royalblue;
    margin: 15px;
    padding: 25px;
}

ul li:nth-child(2n-1) {background-color: rgb(99, 0, 74);}

ol {
    list-style-type: lower-alpha;
    background-color: rgb(74, 0, 109);
    padding: 75px;
    list-style-position: outside;
}

ol li {
    background-color: rgb(68, 185, 29);
    margin: 15px;
    padding: 25px;
}

ol li:nth-child(2n-1) {background-color: rgb(141, 141, 141);}

h1{
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
    color: bisque;
}

h2{
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
    color: bisque;  
}
a{
    color: white;
}