* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(100deg, rgb(25, 106, 160), rgb(41, 110, 189));
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    min-height: 100vh;
}

h1,
form {
    height: 15vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

h1 {
    font-size: 40px;
    margin-top: 20px;
}

form input,
form button {
    border: none;
    outline: none;
    padding: 10px;
    font-size: 20px;
    background-color: #fff;
}

form button {
    margin-left: 8px;
    color: green;
    background-color: rgb(188, 248, 191);
    cursor: pointer;
}

form button:hover {
    color: rgb(188, 248, 191);
    background-color: rgb(0, 160, 0);
}

.todo-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.todo-list {
    list-style: none;
    min-width: 27%;
}

.todo {
    background-color: #fff;
    padding: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    border-radius: 3px;
    color: black;
    font-size: 16px;
}

.todo-item {
    flex: 1;
    margin: 0 8px;
    font-size: 18px;
}

.check-btn,
.delete-btn {
    background-color: rgb(188, 248, 191);
    border: none;
    outline: none;
    padding: 8px;
    font-size: 16px;
    border-radius: 3px;
}

.check-btn {
    color: blue;
}

.check-btn:hover {
    background-color: blue;
    color: white;
}

.delete-btn {
    color: red;
    margin-left: 8px;
}

.delete-btn:hover {
    background-color: red;
    color: white;
}

.fa-check,
.fa-trash {
    pointer-events: none;
}

.completed {
    text-decoration: line-through;
    opacity: 0.5;
}