*{
    box-sizing: border-box;
}


body{
    font-family: "Josefin Sans", sans-serif;
    background-image: url(./images/bg-desktop-light.jpg);
    background-repeat: no-repeat;
    background-size: 100%;
}

.mainDiv{
    width: 100%;
    max-width: 540px;
    height: 100%;
    margin: 0 auto;
    margin-top: 24px;
    border-radius: 5px;
    box-shadow: 0 35px 50px -15px rgba(194, 195, 214, 0.5);
    background-color: #fff;
}



.input-wraper{
    padding-top: 50px;
    display: flex;
    justify-content: center;
    margin: auto;
}

.input-wraper input{
    width: 100%;
  max-width: 533px;
  height: 55px;
  border-radius: 5px;
  box-shadow: 0 35px 50px -15px rgba(194, 195, 214, 0.5);
  background-color: #fff;
  border: none;
  margin: auto;

}
.input-wraper input:focus {
  outline: none;
}

.count{
  margin: 5px 5px 5px 15px;
  font-size: 14px;
  letter-spacing: -0.19px;
  color: #9495a5;

}


.footer{
    display: flex;
    justify-content: space-between;
    border-top: 2px solid black;
    color: #9495a5;
    font-size: 14px;
    height: 50px;
    padding-top: 16px;
}

a:hover{
    cursor: pointer;
}

.footerDiv{
    margin-top: 6px;
    word-spacing: 5px;
    text-decoration: none;
}

.footerA1{
    color: blue;
    text-decoration: none;
}

.footerA2{
    text-decoration: none;
    color: #9495a5;
}

.footerSpan{
    padding: 4.5px 15px;
}



ul{
    list-style: none;
}

li{
    display: flex;
    width: 100%;
    width: 320px;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e3e4f1;
}

.completed{
    text-decoration: line-through;
    color: grey;
}

.ul-div{
        width: 100%;
    max-width: 400px;
    margin: auto;
     color: #494c6b;

    /* display: flex;
    justify-content: center;
    align-items: center; */
}

.p{
    width: 100%;
    max-width: 179px;
    font-size: 14px;
    letter-spacing: -0.19px;
    color: #9495a5;
    margin: auto;    
    margin-top: 50px;
}

.footerDiv2{
  width: 100%;
  max-width: 300px;
  margin: 16px auto;
  padding: 16px 0;
  
  border-radius: 5px;
  box-shadow: 0 35px 50px -15px rgba(194, 195, 214, 0.5);
  background-color: #fff;
  display: none;
  gap: 5px;
}

.delete-btn{
    all:unset
}



@media(max-width: 700px){
    body{
    background-size: 100%;
    margin: auto;
    }

.input-wraper input{
    width: 100%;
   max-width: 327px;
  max-height: 48px;
  margin: auto;
}

.footerDiv2{
    display: flex;
    justify-content: center;
}

.footerDiv{
    display: none;
}


.ul-div{
    width: 100%;
    max-width: 400px;
}
}