* {
    box-sizing: border-box;
}

body {
  margin: 0;
  height: 93vh;
  background: linear-gradient(210deg, #A988BF, #726FBF); 
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  font-family: sans-serif;
}

h2 {
    color: #726FBF;
}

.container, .todo-app {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.todo-app {
    height: auto;
}

form {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.form-control {
    display: inline;
    width: auto;
}

.form-control:focus {
    border-color: #726FBF;
    box-shadow: 0 0 0 .25rem #726fbf6a;
}

.btn {
    background-color: #726FBF;
    color: white;
    padding: 4.58px 12px;
}

.list-group {
    align-items: center;
}

.list-group-item {
    border: 1px solid #726FBF;
    border-radius: 6px;
    margin-top: 20px;
    width: 100%;
    display: flex;
    padding: 5px 10px;
}

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

span {
    width: 100%;
    text-align: justify;
}

i {
    color: red;
    padding: 4px;
    text-align: center;
}

.fa-check{
    color: green;
}

