* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

body {
    background-color: rgba(0, 149, 255, 0.65);
    font-family: system-ui, sans-serif;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content {
    text-align: center;
    max-width: 450px;
    width: 100%;
}

.title {
    font-size: 36px;
    line-height: 120%;
    color: #fff;
    word-spacing: 10px;
}

.content_form {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.form_input {
    padding: 8px, 5px;
    width: 85%;
    border: none;
    border-radius: 3px;
}

.form_input::placeholder {
    color: dimgray;
    text-transform: capitalize;
}

.form_input:focus {
    outline: 1 px solid blue;
}

.form_btn {
    border: none;
    background: #2d8db3;
    background: linear-gradient(90deg, rgba(45, 141, 179, 1) 0%, rgba(87, 199, 133, 1) 32%, rgba(237, 221, 83, 1) 100%);
    padding: 8px 15px;
    border-radius: 3px;
    color: #fff;
}

.todo_list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 50px;
}

.list_item {
    background-color: #fff;
    padding: 5px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.list_info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.todo {
    font-size: 12px;
    line-height: 100%;
}

.checkbox {
    margin-left: 5px;
    margin-top: 3px;
}

.remove-btn {
    background-color: red;
    border: none;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}