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

body{
  background-image: linear-gradient(to top, #cfd9df 0%, #e2ebf0 100%); 
   
}

.bg-pattern{
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
  background-color: #fff7dc;
  background-image: url(../photos/bg-design.svg);
  background-size: cover;
  background-position: center center;
  background-repeat: repeat;
  opacity: .08;
}

.to-do-container{
  width: 60%;
  min-width: 450px;
  padding: 20px 24px;
  line-height: 40px;
  background: #fff;
  border: 2px solid #33322E;
  box-shadow:4px 4px 0px #33322E;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
   overflow-x: show;
}

.divider{
  width: 100%;
  border: 2px solid #000000;
  border-radius: 50px;
}
.input {
  width: 100%;
  line-height: 45px;
  height: 50px;
  padding: 12px;
  border-radius: 12px;
  border: 2px solid #272727;
  outline: none;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  box-shadow: 0px 0px 20px -18px;
  font-size: 18px;
}

.input:hover {
  border: 2px solid #272727;
  box-shadow: 0px 0px 20px -17px;
}

.input:focus {
  border: 2px solid #272727;
}

#add-btn{
  width: 100%;
  background-color: #ffd6e9;
  /* height: 45px; */
  line-height: 45px;
  transition: all 0.25s linear;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  padding: 5px;
  cursor: pointer;
  border: 2px solid #33322E;
   box-shadow: 4px 4px 0px #33322E;
}

#add-btn:hover{
  transform: translateY(-5px);
  box-shadow: none;
}

#add-btn:active{
  transform: translateY(0);
  box-shadow: #ffd6e9 0 2px 4px;;
}

.empty-state {
  text-align: center;
  padding: 40px 20px;
  color: #757575;
}
        
.empty-state i {
  font-size: 70px;
  margin-bottom: 15px;
  color: #e0e0e0;
}

.task-item{
  background: white;
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 4px 4px 0px #33322E;
  transition: all 0.3s;
  border: 2px solid #33322E;
  /* border-left: 4px solid #e0e0e0; */
}

.task-item:hover {
  transform: translateY(-2px);
  box-shadow: none;
  
}

.task-item h5{
  font-size: 20px;
}

.task-item span i{
  font-size: 25px;
}

.bg-color{
  background-color: #F9F3E5;
}

.delete-btn{
  background: #fff;
  border: 2px solid #33322E;
  border-radius: 12px;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s linear; 
}

.delete-btn:hover{
  background: #F6A89E;
  box-shadow: 4px 4px 0px #33322E;
  transform: translate(-2px, -2px);
}

.title{
  position: relative;
  font-weight: 800;
  color: #F9F3E5;
  text-shadow: 4px 4px 0 #33322E;
  letter-spacing: 1px;
  font-size: 50px;
  margin: 0 auto 12px;
  width: 280px;
  user-select: none;
}