*{
    padding: 0;
    margin:0px 0px;
    box-sizing: border-box;
}
body{
    background: #e5ecff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
section{
}

.container{
    border-radius: 10px;
    padding: 10px;
    background: white;
}

.tasks-container{
    padding: 0px 10px;
    margin-top: 20px;

}
.task.show {
  opacity: 1;
  transform: translateY(0);
}
.tasks-container .task .task-inp-label{
    display: flex;
    align-items: center;
    gap: 5px;
}
.header{
    padding: 0px 10px;
    margin: 20px 0px;
}
.header p{
    margin: 10px 0px;
}
.task{
    cursor: pointer;
          opacity: 0;
  transform: translateY(20px);
  transition: 0.4s;
    margin: 10px 0px;
    border: 1px solid #f3f3f5;
    border-radius: 11px;
    padding: 20px 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.task input[type="checkbox"]{
    cursor: pointer;
}
.inp{
    margin: 20px 0px;
    width: 100%;
    display: flex;
    padding:0px 10px;
    gap: 5px;
    
}
.inp input{

    /* width:75%; */
    /* display: block; */
    width: 100%;
    border: none;
    outline: none;
    padding: 10px;
    border-radius: 4px;
    background-color: #f3f3f5;
}

.inp button{
    /* width: 10%;
    display: block; */
    border: none;
    border-radius: 4px;
    outline: none;
    background: black;
    color: white;
    padding: 9px 17px;
    cursor: pointer;
}

@media screen and (min-width:700px){
    section{
        width: 70%;
    }
}