* {
    margin: 0;
    padding: 0;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    box-sizing: border-box;
}

body {
    background-color: rgb(200, 170, 255);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    background-color: white;
    width: 500px;
    padding: 25px;
    border-radius: 15px;
}

.todo-header {
    display: flex;
    justify-content: center;
}

.todo-header h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.todo-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #edeef0;
    border-radius: 15px;
}

.todo-body input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 20px;
    background: transparent;
    padding: 15px;
}

.todo-body button {
    background-color: limegreen;
    padding: 5px 10px 5px 10px;
    margin-right: 10px;
    border-radius: 40%;
    font-size: 20px;
}

ul li {
    list-style: none;
    font-size: 15px;
    padding: 10px;
    margin-top: 10px;
}

li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #edeef0;
    margin-bottom: 10px;
    border-radius: 5px;
}

h5 {
    text-align: center;
    margin-bottom: 10px;
    color: green;
}

.todo-controls {
    width: 25px;
    height: 25px;
    padding: 3px;
    margin-right: 5px;
}