h1, h2, h3 {
    color: white;
    background-color: burlywood;
}
h1{
    text-align: center;
}
body{
    background-color: #fdfbf1;
}

ul li{
    list-style: square;
}

ul li ul li{
    list-style: circle;
}

dl{
    border-left: 5px solid burlywood ;
    background-color: #f0e7db;
}

dt{
    font-variant: small-caps;
    font-weight: bolder;
}

ol li{
    list-style: lower-roman;
}

li::first-letter{
    font-size: 1.25em;
    text-transform: uppercase;
}