@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');



body{
    background-color: black;
    font-family: "Inter", serif;
    font-optical-sizing: auto;
    font-style: normal;

}




.checked{
    text-decoration: line-through;
}
.not-checked{
    text-decoration: none;
}


@keyframes myAnim {
    0% {
        opacity: 1;
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50px);
    }
}

#taskList button{
    border: none;
    background: none;
    margin-left: 10px;
}


.fade{
    animation: myAnim 2s ease 0s 1 normal forwards;
}
.addTask{
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 15px;
    width: 432px;
    height: 40px;
    margin: 0 auto;
}
.addTask input {
    font-family: "Inter", serif;
    font-optical-sizing: auto;
    font-style: normal;
    width: 381px;
    height: 40px;
    border-radius: 10px;
    outline: none;
    border: 1px solid #3E1671;
    color:#AAAAAA;
    background-color: transparent;
    padding-left: 15px;
}
.addTask button{
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background-color: #9E78CF;
    border: none;
}


.toDo{
    width: 432px;
    height: 384px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}
#taskList li{
    background-color: #15101C;
    width: 432px;
    height: 75px;
    border-radius: 10px;
    color:#9E78CF;
    font-size: 16px;
}
#contentText{
    padding-top: 22px;
    width: 390px;
    height: 30px;
    padding-left: 21px;
    display: flex;
    justify-content: space-between;
    align-items: center;


}


#contentText div{
    width: 100px;
    height: 50px;
    display: flex;
}

input[type="checkbox"]{
    background-color: #15101C;
    border: none;
    outline: none;
    width: 18px;
}
