* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
    
}
h1{
    font:bold;
    font-size: 40px;
    color: white;
    background-color: lightcoral;
    text-align: center;
    padding-bottom: 2%;
    padding-top: 2%;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
h2{
    color: black;
    text-align: center;
    background-color: whitesmoke;
    padding-bottom: 1%;
}

main{
    width: 100%;
    height: 100vh;
    display: flex;
    background-color: lightblue;
    justify-content: center;
    align-items: center;
}
.box{
    width: 600px;
    height: 500px;
    background-color: white;
    border-radius: 5px;
    padding: 15px;
}
#item{
    width: 100%;
    padding: 10px;
    font-size: 20px;
    border: 0;
    outline: 0;
    font-weight: bold;
    box-shadow: 0px 0px 2px grey;
    display: block;
}

#to-do-box {
    margin-top: 20px;
    list-style: none;

}

#to-do-box li{
    position: relative;
    background-color: midnightblue;
    color: white;
    padding: 10px;
    border-radius: 2px;
    padding-right: 30px;
    text-align: justify;
    margin-top: 10px;
    user-select: none;
}
#to-do-box li i{
    position: absolute;
    right: 10px; 
    top: 10px;
    cursor: pointer;
}

.done{
    text-decoration: line-through;
    color: black;
    background-color: #95a5a6 !important;
}