body{
    background-color: #F5F5F5;
}
.content{
  width: 40vw;
  margin:0 auto;
}
.header{
    width: 20vw;
    margin:0 auto;
    font-size: 40pt;
    text-align: center;
    color: #5EC2AD;
    font-family: Arial, Helvetica, sans-serif;
}
.inputbox{
    width: 40vw;
}
input[type=text] {
    outline: none; /*取消focus時的外框*/
    width: 36.5vw;
    padding-left: 20px;
    padding-right: 15px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin:0 auto;
    border: none;
    background-color:white;
    border-bottom: 1px solid #5EC2AD ;
}
label{
    padding-left: 1em;
    font-size: 10pt;
    font-family: Arial, Helvetica, sans-serif;
}
input[type=checkbox]:checked+label{
    text-decoration: line-through;
}
#dolist{
    width: 10vw;
    margin: 0;
    padding: 0;
}
.list{
    width: 20vw;
}
#dolist li{
    background-color: white;
    position: relative;
    width: 38.2vw;
    list-style: none; 
    padding: 0.5em 0.5em 0.5em 0.1em;
    border-bottom: 1px solid #5EC2AD ;
   
}
.deleteBtn{
    position: absolute;
    left: 95%;
    border-radius: 50px;
}
