*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    color:#fff;
}
body{
    background: rgb(66, 4, 237);
    background: linear-gradient(90deg, rgba(51, 233, 11, 0.847) 7%, rgba(196, 5, 151, 0.885) 100%, rgb(237, 252, 69) 100%);
}
.clearfix::after{
    content:'';
    display:block;
    clear:both;
}
.input-text-container{
    width:80%;
    background: rgb(74, 58, 180);
    background: linear-gradient(90deg, rgba(58,180,180,1) 7%, rgba(29,237,253,1) 100%, rgba(252,176,69,1) 100%);
    margin:3% auto;
    text-align:center;
    padding:1%;
    border-top-left-radius:35px;
    border-bottom-right-radius:35px;
    border:5px solid #000;
    animation:zoomIn 1s ease-in;
}
.input-text-container h1{
    font-size:45px;
}
.input-text-container input[type="text"]{
    width:50%;
    padding:1%;
    margin:3% 0%;
    border:2px solid black;
    border-radius:7px;
    outline:none;
    color:#000;
}
.input-text-container button[type="button"],
.text-print-to-do .remove-button,
.text-print-to-do .update-button
{
    font-size:17px;
    font-weight:bolder;
    padding:0.5%;
    width:15%;
    cursor:pointer;
    outline:none;
    border:none;
    border-top-left-radius:20px;
    border-bottom-right-radius:20px;
    border:2px solid #000;
    background: rgb(58,106,180);
    background: linear-gradient(90deg, rgba(58,106,180,1) 7%, rgba(29,237,253,1) 100%, rgba(252,176,69,1) 100%);
    transition:all 0.3s ease-in;
}
.input-text-container button[type="button"]:hover,
.text-print-to-do .remove-button:hover,
.text-print-to-do .update-button:hover
{
    border-top-right-radius:20px;
    border-bottom-left-radius:20px;
    border-top-left-radius:0;
    border-bottom-right-radius:0;
}
.text-print-to-do{
    width:50%;
    margin-left:10%;
    text-align:center;
    position:relative;
    text-align:left;
}
.text-print-to-do .todo-content{
    width:100%;
    background: rgb(58,180,180);
    background: linear-gradient(90deg, rgba(58,180,180,1) 7%, rgba(29,237,253,1) 100%, rgba(252,176,69,1) 100%);
    float:left;
    display:flex;
    justify-content:space-between;
    margin-bottom:3%;
    padding:2%;
    border-top-left-radius:20px;
    border-bottom-right-radius:20px;
    border:5px solid #000;
}
.text-print-to-do .todo-content div{
    width:60%;
    height:12vh;
    background-color:red;
    overflow:auto;
    padding:1%;
    border:2px solid #000;
    background: rgb(58,106,180);
    background: linear-gradient(90deg, rgba(58,106,180,1) 7%, rgba(29,237,253,1) 100%, rgba(252,176,69,1) 100%);
}
.text-print-to-do h4{
    width:20%;
    background: rgb(3, 243, 31);
    background: linear-gradient(90deg, rgba(58,106,180,1) 7%, rgba(29,237,253,1) 100%, rgba(252,176,69,1) 100%);
    float:right;
    position:fixed;
    left:70%;
    padding:2%;
    border-top-left-radius:35px;
    border-bottom-right-radius:35px;
    border:5px solid rgba(11, 10, 11, 0.021);
    text-align:center;
}
/*Responsive design begins here*/
@media only screen and (max-width:950px){
    .input-text-container{
        width:95%;
    }
    .input-text-container h1{
        font-size:34px;
    }
    .input-text-container input[type="text"]{
        width:65%;
    }
    .input-text-container button[type="button"]{
        width:29%;
        font-size:15px;
    }
    .text-print-to-do{
        width:90%;
        margin:0 auto;
        text-align:center;
    }
    .text-print-to-do h4{
        width:55%;
        margin:2% auto;
        display:block;
        position:relative;
        float:none;
        left:0;
    }
    .text-print-to-do .todo-content{
        flex-direction:column;
    }
    .text-print-to-do .todo-content div{
        width:100%;
    }
    .text-print-to-do .todo-content .remove-button,
    .text-print-to-do .todo-content .update-button
    {
        width:100%;
        font-size:15px;
        margin-top:3%;
    }
}
