
body{
    background-color: #14213d;
    color: #ffffff;
    font-family: 'Ubuntu', sans-serif;
}

p{
    margin: 0;
    font-size: 1.5rem;
}

.before-todo{
    margin: 18rem 3rem;
}

li{
    list-style: none;
    margin: 20px 0;
    padding: 1.5rem;
    background-color: #FBAB7E;
    background-image: linear-gradient(62deg, #FBAB7E 0%, #F7CE68 100%);
    color: #14213d;
    
}

.my-list-todo{
    padding-left: 0;
    overflow-y: scroll;
}

ul li {
    cursor: pointer;
}

ul li.text-bar{
    text-decoration: line-through;
}

.input-user{
    width: 100vw;
    height: 8rem;
    position: fixed;
    bottom: 0;
    background-color: #14213d;
}

input{
    border: 0;
    padding: 0;
}

.my-btn{
    border-radius: 50%;
    padding: 0 3rem;
    border: 0;
}



.btn-grad {
    background-image: linear-gradient(to right, #F09819 0%, #EDDE5D  51%, #F09819  100%)
}

.btn-grad {
    margin: 10px;
    padding: 15px 45px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;            
    border-radius: 30px;
    display: block;
}

.btn-grad:hover {
    background-position: right center; /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
}

