h1 {
    width: 60%;
    background-color: rgb(var(--accent));
    padding: 20px;
    text-align: center;
    color: rgb(var(--bg));
    border-radius: 9999px;
    margin-bottom: 50px;
}

div {
    text-align: justify;
}

#taches {
    width: fit-content;
    max-width: 60%;
    list-style-position: inside;
}

#taches li {
    margin-bottom: 20px;
}

#taches li::marker {
  color: rgb(var(--accent));
  font-size: larger;
}

.cat {
    color: rgb(var(--accent))
}

#retour-btn {
    border: 2px solid rgb(var(--accent));
    background-color: rgb(var(--bg));
    color: rgb(var(--accent));
    padding: 15px 50px;
    border-radius: 9999px;
    cursor: pointer;
}

#retour-btn:hover {
    background-color: rgb(var(--accent));
    color: rgb(var(--bg));
    box-shadow: 0 5px 30px rgba(var(--shadow), 0.3);
    padding: 15px 45px;
}

#retour-btn #fleche {
    margin-right: 0px;
}

#retour-btn:hover #fleche {
    margin-right: 10px;
}

.tache-faite {
    color: green;
    text-decoration: line-through;
    font-style: italic;
}

a {
    margin-top: 30px;
}

#taches-faites li .cat {
    color: darkgreen;
}


@media (max-width: 768px) {
    h1 {
        width: 100%;
    }
    #taches {
        max-width: 100%;
    }
}