body {
    background-color: rgb(51, 204, 204, 0.3);
    font-family: 'Assistant';
}

h1 {
    background-color: aliceblue;
    color: rgb(51, 204, 204);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

#toDoList {
    background-color: aliceblue;
    color: dimgray;
    padding: 10px;
    border-radius: 10px;
    list-style-position: inside;
    list-style-type: circle;
}

#inputArea {
    background-color: aliceblue;
    padding: 20px;
    border-radius: 10px;
    text-align: right;
}

#textBox {
    height: 20px;
    border: 1px solid rgb(51, 204, 204);
    border-radius: 3px;
}

#textBox:focus {
    color: dimgray;
    outline: none;
    border: 3px solid rgb(51, 204, 204, 0.5);
}

#addTask {
    height: 40px;
    color: dimgray;
    background-color: white;
    border-color: gainsboro;
    border-style: outset;
    border-radius: 10px;
    padding-left: 5px;
    padding-right: 5px;
    cursor: pointer;
}

#addTask:hover {
    box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}
