@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@1,300&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;

}

main{
    height: 100vh;
    width: 100%;
    display: flex;
    background-color: #3498db;
    justify-content: center;
    align-items: center;
}

.box{
    min-height: 500px;
    width: 600px;
    background: white;
    border-radius: 7px;
    padding: 15px;
}
#item{
    width: 100%;
    padding: 10px;
    font-size: 20px;
    border: 0;
    outline: 0;
    box-shadow: 0px 0px 2px grey;
    font-weight: bold;
    display: block;
}
#to-dobox{
    list-style: none;
    margin-top: 17px;
}

#to-dobox li{
    background-color: #2c3e50;
    color: white;
    padding: 10px;
    border-radius: 2px;
    position: relative;
    padding-right: 25px;
    margin-top: 10px;
    user-select: none;

}
ul li i{
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
}
.done{
    text-decoration: line-through;
    color: black;
    background-color: #95a5a6 !important;
}
