body {
    background-color: beige;
}

.container {
    text-align: center;
    width: 860px;
    margin: 40px auto 0;
    box-sizing: border-box;
    position: relative;
    padding: 20px 5px;
    background-color: white;
    border: solid 1px #999;
}
#todoList ul {
    margin: 0;
    padding: 0;
    width: 120px;
    list-style: none;
    position: relative;
    float: left;
}
input[type="text"] {
    width: 113px;
    box-sizing: border-box;
    margin:3px;
    font-size: 14px;
    text-align: left;
}
#todoList:after {
    content: "";
    display: table;
    clear: both;
}
.addItem {
    display: none;
    position: absolute;
    top:0;
}
#todoList li{
    text-align: left;
    color: #555;
}
#todoList .listTitle {
    border: solid 1px white;
    padding: 5px;
    background-color: #5B2020;
    color: whitesmoke;
    font-weight: bold;
    text-align: center;
    font-family: sans-serif;
    list-style: none;
    font-weight: normal;
}
#todoList ul:hover li.addItem {
    display: block;
}
#trash {
    line-height: 200px;
    text-align: center;
    width: 450px;
    height: 200px;
    margin: 90px auto 0;
    background-color: #F7CD00;
}
.emptyClass {
    height:10px;
    background-color: wheat;
    border:dashed 1px white;
}



















