* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

:root {
    --shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.container {
    width: 550px;
    height: 650px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 20px;
}

.header_top_content {
    width: 100%;
    height: 150px;
    box-shadow: var(--shadow);
    border-radius: 20px;
    padding: 20px;
}

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

.input_div {
    width: 100%;
    height: 35px;
    box-shadow: var(--shadow);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.input {
    width: 100%;
    height: 100%;
    font-size: 16px;
    color: green;
    padding: 0px 15px;
    outline: none;
    border: none;
    border-radius: 10px;
}

.bi-x {
    font-size: 20px;
    color: red;
    margin: 5px;
    cursor: pointer;
}

.form_btn {
    width: 120px;
    height: 35px;
    background-color: green;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 10px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: .5s;
}

.form_btn:hover {
    color: green;
    background-color: white;
    border-color: green;
    transition: .5s;
}

.all_delete_btn {
    margin-top: 40px;
    width: 100px;
    height: 35px;
    background-color: red;
    border-radius: 10px;
    cursor: pointer;
    color: white;
    transition: .5s;
    border: 1px solid transparent;
}

.all_delete_btn:hover {
    color: red;
    background-color: white;
    border-color: red;
    transition: .5s;
}

.task {
    width: 100%;
    height: 460px;
    overflow: auto;
    display: inline-block;
}

.task_name {
    color: green;
    font-size: 18px;
    padding: 20px;
}

.btn_group {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.task_card {
    width: 100%;
    height: 150px;
    box-shadow: var(--shadow);
    border-radius: 10px;
    margin-top: 20px;
    animation: bounce 0.5s;
}

.comp_btn {
    width: 90px;
    height: 50px;
    background-color: rgb(0, 68, 255);
    border: 1px blue;
    border-radius: 10px;
}

.comp_bt {
    width: 90px;
    height: 50px;
    background-color: rgb(56, 153, 0);
    border: 1px green;
    border-radius: 10px;
}

.comp_b {
    width: 90px;
    height: 50px;
    background-color: rgb(255, 234, 0);
    border: 1px gold;
    border-radius: 10px;
}

.comp_ {
    width: 90px;
    height: 50px;
    background-color: rgb(255, 0, 0);
    border: 1px red;
    border-radius: 10px;
}

.comp {
    width: 90px;
    height: 50px;
    background-color: rgb(255, 255, 255);
    border: 1px white;
    border-radius: 10px;
}

.com {
    width: 100px;
    height: 50px;
    background-color: rgb(255, 255, 255);
    border: 1px white;
    border-radius: 10px;

}

.active{
    background-color: brown;
    text-decoration: line-through;
}
@keyframes bounce {
    0% {
        transform: scale(0);
    }

    20% {
        transform: scale(1);
    }

    40% {
        transform: scale(0.8);
    }

    60% {
        transform: scale(1);
    }

    80% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
    }
}