*, *:before, *:after {
    box-sizing: border-box;
  }

.material-symbols-outlined {
    color: whitesmoke;
    cursor: pointer;
    font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 48
}

.drag-icon {
    cursor: move;
}

body {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: medium;
    margin: 0;
    display: flex;
    justify-content: center;
    background-color:mistyrose;
}

h1 {
    text-align: center;
    color: whitesmoke;
}

.checklist {
    border: 1px solid whitesmoke;
    padding: 5px;
    border-radius: 4px;
    margin-right: 10px;
    cursor: default;
}

main {
    background-color: cadetblue;
    margin: 20px;
    padding: 30px;
    border-radius: 4px;
    min-height: 300px;
    min-width: 500px;
    align-self: center;
}

#to-do-section {
    display: flex;
    flex-direction: column;
}

ul {
    padding: 10px 30px;
}

button {
    background-color: coral;
    color: whitesmoke;
    font-size: large;
    border-radius: 5px;
    border: 1px solid coral;
    width: 100px;
    max-width: 100px;
    align-self: center;
}

li {
    list-style: none;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

li input {
    height: 30px;
}

textarea {
    flex: 1;
    height: 30px;
    padding: 5px 10px;
    resize: none;
    background: none;
    outline: none;
    border: none;
    color: whitesmoke;
    font-family: inherit;
    font-size: large;
}

li input[type="checkbox"] {
    width: 20px;
    cursor: pointer;
}

.strike-through {
    text-decoration: line-through;
}

.dragging {
    opacity: .5;
    cursor: move;
}