.container {
  margin-top: 30px;
  width: 100%;
  height: 100vh;
  /* overflow: hidden; */
  text-align: center;
  font-family: 'Oswald', Helvetica, sans-serif;
  transform: skewY(-3deg);
  letter-spacing: 4px;
  word-spacing: 5px;
  color: rgb(204, 146, 21);
  font-weight: bolder;
  font-size: xx-large;
}
.main {

  padding: 30px 40px;
  /* color: whitesmoke; */
  text-align: center;
background: rgba(197, 192, 114, 0.25);
box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
backdrop-filter: blur(4px);
-webkit-backdrop-filter: blur(4px);
border-radius: 10px;
border: 1px solid rgba(255, 255, 255, 0.18);



}
 input{
  outline: none;
  border: none;
  padding: 10px;
  border-radius: 30px;

}

.addBtn{
  color: rgb(177, 38, 38);
  text-decoration: none;
  /* border: 1px red solid; */
  border: none;
  padding: 0.2rem;
  font-size: 13px;
  cursor: pointer;
}
.addBtn:hover{
  background: #d8c4c4;
  
}
.card-action{

  /* background: #b8ae8d; */
  padding: 1rem;
  color: rgb(230, 167, 32);
  text-align: center;
  justify-content: center;
  /* align-items: center; */
  font-size: large;
  font-weight: 200;



  /* text-decoration-line: line-through; */
}


ul li{
  text-decoration: none;
  list-style: none;
  cursor: pointer;
  border-radius: 30px;
  margin-top: 5px;
  padding: 5px;

}
ul li:nth-child(odd) {
  background: #644e69;

}
ul li:nth-child(even){
  background: rgb(230, 160, 56);
  color: rgb(19, 1, 1);
}
ul li:hover {
  background: rgb(54, 215, 236);
}



.delete-item{ 
  /* border : 1.5px rgb(167, 10, 49) solid; */
  cursor: pointer;
  position: absolute;
  right: 10px;
  color: #1d87dd;
  font-size: xx-large;
  /* position: absolute; */
  /* right: 0; */
  /* top: 0; */
  /* padding: 12px 16px 12px 16px; */
  outline: none;

  

} 


#task{
  background: #f4f5f0;
  


}
#task:hover{

  background: #afaea9;
  
}
#filter{

  background: #f5f4f0;
}
#filter:hover{

  background: #afaea9;

}
.clear-tasks{

  text-decoration: none;
  padding: 0.2rem;
  font-size: 25px;
  cursor: pointer;
  outline: none;
  border-radius: 30px;
  padding: 10px;
  color: rgb(230, 167, 32);

}
.clear-tasks:hover{
  background: #d8c4c4;
  color: black;
  font-weight: bolder;
  
}
.done {
  text-decoration: line-through;
}
.dark{
  background-color: black;
    color: #e6e6e6;
}

/* Dark Mode Toggle */
.theme-switch-wrapper {
  display: flex;
  align-items: center;
  z-index: 100;
  position: fixed;
  right: 25px;
  top: 30px;
}

.theme-switch-wrapper span {
  margin-right: 10px;
  font-size: 1rem;
}

.theme-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.theme-switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}
.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: rgb(168, 16, 16);
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* /* Rounded slider */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}
