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

body {
    font-family: Arial, Helvetica, sans-serif;
    width: 100vw;
    overflow-x: hidden;
    background-image: url(img.png);
}

.todo-container {
    width: 75%;  
    background-color: #f6f6f6;
    margin: 30px auto 0;
}

.todo-container .add-task {
    padding: 15px;
    background-color: #009688;
    position: relative;
}

.todo-container .add-task input {
    display: inline-block;
    padding: 10px 15px;
    border: none;
    background-color: rgba(255, 255, 255, 0.3);
    width: calc(100% - 15px);
    color: #fff;
}

.todo-container .add-task input:focus {
    outline: none;
}

.todo-container .add-task .plus {
    position: absolute;
    height: 43px;
    width: 43px;
    background-color: #fff;
    right: 12px;
    bottom: 11px;
    border-radius: 50%;
    line-height: 43px;
    text-align: center;
    color: #009688;
    cursor: pointer;
    font-size: 38px;
    transition: transform 0.3s ease-in-out;
}

.todo-container .add-task .plus:hover {
    transform: rotate(90deg);
}

.todo-container .tasks-content{
    padding: 15px;
}
.todo-container .tasks-content .no{
    color: #777;
    font-size: 15px;
}

.todo-container .tasks-content > span{
    display: block;
    background-color: #fff;
    padding: 10px;
} 
.todo-container .tasks-content > span:not(:last-child){
    margin-bottom: 10px;
}
.todo-container .tasks-content .task-box .delete{
    float: right;
    background-color: #e91e63;
    padding: 4px 10px ;
    font-size: 12px;
    color: #fff;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
}
.todo-container .tasks-content .task-box.finished{
    text-decoration: line-through;
}

.task-stats{
    overflow: hidden;
    margin: 10px auto;
    width: 75%;
    font-size: 12px;
}

.task-stats .tasks-count{
    width: 50%;
    float: left;
    padding: 10px;
}
.task-stats .tasks-completed{
    width: 50%;
    float: right;
    padding: 10px;
    text-align: right;
}
.task-stats .tasks-count span,
.task-stats .tasks-completed span{
    color: #fff;
    padding: 1px 5px;
    font-size: 10px;
    border-radius: 4px;
    font-weight: bold;

}

.task-stats .tasks-count span{
    background-color: #e91e63;
}
.task-stats .tasks-completed span{
    background-color: #03a9f4;
}