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

body{
    background-color: #aba38f;
    
}

.button{
    border-radius: 10px;
    background-color: #42422b;
    color: white;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 16px;
}

.to-do{
    max-width: 40%;
    background-color: #d9d4c8;
    margin: 100px auto;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 5px 5px 5px #42422b;

}

.to-do__title{
    color: #565538;
    font-family: "Bungee";
    font-size: 50px;
    margin-bottom: 14px;
}

.to-do__input{
    width: 78%;
    padding: 5px;
    font-size: 20px;
    border-radius: 10px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.to-do__add{
    width: 20%;
}

.to-do__header{
    display: flex;
    justify-content: space-between;
}

.to-do__item{
    display: flex;
    align-items: center;
    padding: 8px 16px 8px 0;
    border-radius: 4px;
    background-color:#56553888;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: bold;
  
   
}

.to-do__item-text{
    max-width: 80%;
    overflow-wrap: break-word;
    min-width: 0;
}

.checkhed{
    text-decoration: line-through;
}

.to-do__item-check{
    position: relative;
    left: -30px;
    width: 16px;
    height: 16px;
}

.to-do__item-remove{
    height: 5px;
    width: 20px;
    background-color: #42422b;
    margin-left: auto;
    border-radius: 2px;
}

.to-do__clear{
    padding: 5px;
    display: block;
    margin-left: auto;
    display: none;
}

.to-do__list{
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 30px 0 30px 30px;
    
}