        .tasks-table {
            width: 60%;
            background-color: #ddd;
            position: relative;
        }
        .tasks-table #btn1 {
            position: absolute;
            top: 20px;
            right: 5px;
            font-size: 20px;
            box-shadow: 0px 3px 5px rgba(168, 168, 168, .38);
        }
        .task {
            transition: .5s;
            border-radius: 4px;
            margin: 1rem ; 
            background-color: white;
        }
        .done {
            background-color: rgb(158,253,160);
        }
        .task:hover {
            box-shadow: 0px 3px 15px rgba(97, 97, 0, .843);
        }
        .circular {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: none;
        }