a {
    color: #7a4e4e;
    text-decoration: none;
}

@keyframes linkAnim {
    to {
        color: #602c2c;
    }
}

a:hover {
    animation: linkAnim 0.2s ease forwards;
}

.body-div {
    text-align: center;
}

ul {
    display: flex;
    flex-wrap: wrap;
    list-style: lower-latin;
    list-style-position: inside;
    width: 90%;
}

li {
    width: 25%;
    padding: 0.3em;
    box-sizing: border-box;
    font-size: 2em;
}

li::marker {
    color: #c39a9a;
}
