.list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list__item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-gap: 20px;
    align-items: center;
    border-bottom: 1px solid lightgrey;
    padding: 10px;
}

.list__item--hidden {
    display: none;
}

.list__content--done {
    text-decoration: line-through;
}

.list__button {
    height: 30px;
    width: 30px;
    color: white;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 1s;
}

.list__button--toggleDone {
    background-color: hsl(120, 100%, 25%);
}

.list__button--toggleDone:hover {
    background-color: hsl(120, 100%, 30%);
}

.list__button--toggleDone:active {
    background-color: hsl(120, 100%, 35%);
}

.list__button--remove {
    background-color: hsl(0, 100%, 50%);
    font-weight: bold;
}

.list__button--remove:hover {
    background-color: hsl(0, 100%, 60%);
}

.list__button--remove:active {
    background-color: hsl(0, 100%, 70%);
}