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

body {
    font-family: Arial, Helvetica, sans-serif;
}

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

.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;
    font-size: 14px;
}

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

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

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

.todo-container .tasks-content {
    padding: 15px;
}

.todo-container .tasks-content .no-task-message {
    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 .delete {
    float: right;
    background-color: #E91E63;
    padding: 4px 10px;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
}

.todo-container .tasks-content .task-box.finished {
    background-color: rgba(128, 128, 128, 0.3);
}

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

.tasks-count {
    width: 50%;
    float: left;
    padding: 10px;
}

.tasks-completed {
    width: 50%;
    float: right;
    text-align: right;
    padding: 10px;
}

.tasks-count span,
.tasks-completed span {
    color: #FFF;
    padding: 1px 5px;
    font-size: 10px;
    border-radius: 4px;
    font-weight: bold;
}

.tasks-count span {
    background-color: #E91E63;
}

.tasks-completed span {
    background-color: #03a9f4
}

.clear {
    clear: both;
}

.delete-all {
    cursor: pointer;
    width: 100px;
    border-radius: 6px;
    text-align: center;
    color: #fff;
    margin-top: 50px;
    padding: 10px;
    background-color: #E91E63
}

.done {
    cursor: pointer;
    width: 100px;
    border-radius: 6px;
    text-align: center;
    color: #fff;
    padding: 10px;
    background-color: #E91E63;
    float: right;
    margin-top: -35px;
}