* {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}
header {
    display: flex;
    background-color: #ffd483;
    justify-content: space-between;
    padding: 10px;
}
#task-button {
    padding: 10px;
    /*margin-right: 3%;*/
}
ul.tasks-list li {
    display: flex;
    background-color: #85dbd9;
    padding: 10px;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    font-size: 1.250em;
}
button {
    border: none;
    background-color: #fc6467;
    color: white;
    font-weight: bold;
    font-size: 1em;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 5px 5px #4d4027;
}
button:active {
    background-color: #85dbd9;
}
input[type="color"] {
    outline: none;
    border: none;
}
div {
    display: flex;
    align-items: center;
    gap: 10px;
}