body {
    background-color: rgb(255, 217, 192);
    font-family: Arial, sans-serif;
    height: 100vh;
}
.state-list {
    max-width: 600px;
    width: 90%;
    margin: 0 auto;
    padding: 40px20px;
    background-color: rgb(55, 0, 128);
    color: white;
    border-radius: 2px;
}
h1 {
    text-align: center;
    color: white;
}
ul {
    list-style-type: none;
    padding: 0;
}
li {
    margin-left: 20px;
    font-size: 18px;
    padding: 5px 0;
}
h2 {
    font-weight: normal;
    color: black;
    font-size: 15px;
    margin: 0;
    text-align: center;
}
.marked, .favorite {
    color: red;
}
ul {
    list-style-type: disc; 
    padding-left: 20px;
}
.custom-bullet {
    list-style-type: none; 
    position: relative;
    padding-right: 20px;    
}
.custom-bullet::before {
    content: "✔"; 
    color: red; 
    position: absolute;  
    left: -20px; 
    margin-right: 10px
}
