
body{
  margin: 0;padding: 0;
  box-sizing:border-box ;
  font-family: 'Poppins' , 'sans-serif';

}

.container{
    width:100%;
    height: 100vh;
    background:linear-gradient(135deg , #153677 , #4e085f) ;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.todo{
  width: 350px;
  height: auto;
  max-height: auto;
  background-color: antiquewhite;
  border-radius: 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  overflow: hidden;
  padding-block: 20px;
}
.h1{
  width: 100%;
  height: 80px;
  font-size: 20px;
  font-weight: normal;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #153677;
  >img{
    width: 50px;
    height: 50px;
    margin-left: 5px;
  }
}
.parentWritting{
  width: 100%;
  height: 90px;
  display: flex;
  justify-content: center;
}
#writting{
  width: 88%;
  border: 1px solid gray;
  height: 50px;
  border-radius: 30px;
  position: relative;
  >input{
    border: none;
    outline: none;
    height: 95%;
    width: 88%;
    border-radius: 30px;
    position: relative;
    background-color: rgb(219, 219, 219);
    padding-inline: 10px;
  }
  >button{
    position: absolute;
    top: 0;right: 0;
    width: 90px;
    height: 100%;
    border-radius: 30px;
    border: none;
    background-color: tomato;
    color: aliceblue;
    &:hover{
      background-color: rgb(199, 49, 22);
    }
  }
}
#btnUpdate{
    position: absolute;
    top: 0;right: 0;
    width: 90px;
    height: 100%;
    border-radius: 30px;
    border: none;
    background-color: tomato;
    color: aliceblue;
    display: none;
    &:hover{
      background-color: rgb(199, 49, 22);
    }
}
#isDone{
  width: 300px;
  height: auto;
  display: none;
  background-color: antiquewhite;
  border-radius: 15px;
  overflow: hidden;
  padding-block: 20px;
  >h1{
  width: 50%;
  height: 80px;
  font-size: 20px;
  font-weight: normal;
  display: flex;
  align-items: center;
  color: #153677;
  }
  >li{
  transform: translateX(-20px);
  width:100%;
  height: auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-radius: 30px;
  border: 1px solid gray;
  list-style-type: none;
  margin-top: 10px;
  >p{
    width: 50%;
    height: auto;
    padding-left: 20px;
    color: #153677;
    font-size: 20px;
  }
}
}
.list{
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  >li{
  transform: translateX(-20px);
  width:100%;
  height: auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-radius: 30px;
  padding-inline: 10px;
  border: 1px solid gray;
  list-style-type: none;
  margin-top: 10px;
  >p{
    width: 50%;
    height: auto;
    padding-left: 20px;
    color: #153677;
    font-size: 20px;
  }
  >button{
    padding: 10px;
    border: none;
    margin-inline: 5px;
    border-radius: 30px;
    background-color: tomato;
    color: antiquewhite;
       &:hover{
      background-color: rgb(199, 49, 22);
    }
  }
}
}
.line{
    display: flex;
    width: 0;
    height: 3px;
    border-radius: 2px;
    background-color: black;
    position: absolute;
    left: 0;
    top: 29px;
    transition: 1s;

}

.left {
       transform: translateX(-1500px);
  }

