#container
{
    text-align: center;
    align-items: center;
    align-self: center;
    background-color: tan;
    border: 3px solid black;
    margin-top: 100px;
    margin-bottom: 100px;
    margin-right: 500px;
    margin-left: 500px;
    padding: 5px;
}

#list
{
    background-color: white;
    border: 2px solid black;
    margin: 25px 50px;
    width: auto;
    height: 200px;
    overflow: auto;
    word-wrap: break-word;
}

#list .listItem
{
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 18px;
    text-align: left;
    padding: 5px;
}

#list .listItem:hover
{
    background-color: skyblue;
    cursor: pointer;
}

#tools
{
    display: flex;
    align-items: center;
    margin: 10px 150px;
}

#todo
{
    border: 2px solid black;
    padding: 2px;
    font-size: 15px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

#submit
{
    margin-left: 10px;
    padding: 4px 20px;
    background-color: bisque;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    cursor: pointer;
    box-shadow: 2px 2px 5px black;
    font-size: 15px;
}

h3
{
    font-size: 30px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    text-shadow: 0px 0px 3px skyblue;
}

