.todolist-main {
    text-align: center;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    background-image: url("../img/todolist/ecran.jpg");
    background-size: cover;
    height: 820px;
}


#task, #add {
    border-radius: 20px;
    height: 40px;
    margin-top: 30px;

}

#todolist-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin: 10px;
    padding-top: 20px;
    width: 80%;
}

.colonne {
    border:1px solid black;
    border-radius: 15px;
    background-color: grey;
    padding: 15px;
    height: 100%;
    text-align: left;
    box-shadow: 0px 0px 10px 0px black;
}

.todolist-h3 {
    color: white;
    margin: 0;
    text-align: center;
    margin-bottom: 10px;
}

.task {
    display: flex;
    border: 1px solid black;
    border-radius: 15px;
    padding: 10px;
    margin: 5px;
    background-color: silver;
    align-items: center;
}

.up {
    width: 10px;
    height: 10px;
}

.down {
    width: 10px;
    height: 10px;
}

.edit {
    width: 20px;
    height: 20px;
}

.delete {
    width: 20px;
    height: 20px;
}

.task-text {
    align-items: left;
}

.icon-Container {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
}

.icon-list{
    list-style-type: none;
    padding: 0;
    margin: 0;
    margin-right: 10px;
}