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

body{
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100wv;
    height: 100vh;
}

.title{
    font-weight: bold;
    font-size: 60px;
    color: rgb(0, 110, 255);
    letter-spacing: 1px;
    margin: 30px 0;
    font-family:Arial, Helvetica, sans-serif;
    
}

.To-Do-List{
    width: 450px;
    padding: 20px;
    box-shadow: 0 10px 4px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    background: white;
    >.list{
        display: grid;
        grid-template-columns: 4fr 1fr;
        gap: 10px;
        >.entered-list{
            padding: 10px;
            border-radius: 5px;
            border: 1px solid gray;
            font-size: 16px;
            outline: none;
        }
        >.add-list{
            border: none;
            border-radius: 5px;
            background: rgb(0, 110, 255);
            color: white;
            cursor: pointer;
            font-size: 16px;
            opacity: .6;
            pointer-events: none;
            
        }
        .add-list.active{
    opacity: 1;
    pointer-events: all;
}

    }
    >.tasks{
        width: 100%;
        margin-top: 30px;
        >.item{
            padding: 10px;
            border-radius: 5px;
            box-shadow:0 10px 30px rgb(0, 110, 255);
            margin-bottom: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            > p{
                font-size: 16px;
                font-weight: 400;
                color: black;
                letter-spacing: 1px;
            }

            >.item-btn{
                display: flex;
                gap: 10px;
                align-items: center;
                > i{
                    color:rgb(0, 110, 255);
                    font-size: 18px;
                    cursor: pointer;

                }
            }

        }

    }
}

