@font-face {
    font-family: tv;
    src: url(./font/Far_TV.ttf);
}
@font-face {
    font-family: yekan;
    src: url(./font/Yekan.ttf);
}

body{
    direction: rtl;
    box-sizing: border-box;
    font-size: 16px;
}

.container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-family: yekan;
}

.container *{
    margin-bottom: 15px;
}

#search-form{
    width: 100%;
    display: flex;
    justify-content: center;
}

#search-form input{
    padding: 7px 20px;
    width: 70%;
    max-width: 400px;
}

#to-do-list{
    list-style-type: none;
    font-size: 1.2rem;
}

#to-do-list .to-do-item{
    display: flex;
    justify-content: space-between;
}

#to-do-list .to-do-item .title{
    margin-left: 10px;
    border-bottom: 1px solid rgba(102, 102, 102, 0.808);
}

#to-do-list .to-do-item .delete-btn{
    background-color: #2e86de;
    padding: 5px 10px;
    color: white;
    border-radius: 5px;
}

#add-form{
    display: flex;
    width: 70%;
    max-width: 400px;
    justify-content: center;
}

#add-form input{
    padding: 7px 20px;
    flex: 7;
}

#add-form button{
    flex: 2;
    border: solid 2px #2e86de;
    color: #2e86de;
    font-weight: bold;
}

h2{
    color: #2e86de;
    font-size: 1.9rem;
    font-family: tv;
}