body {
    height: 100%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-image: linear-gradient(to bottom, #0094FF, #003154);
}
h1, ul, li, textarea {
    color: white;
    font-family: 'Roboto', sans-serif;
}
h1 {
    font-size: 5rem;
    padding-top: 2rem;
    padding-left: 2rem;
}
#toDo {
    border-radius: 15px;
    height: 75%;
    top: 56%;
}
li {
    border: none;
    padding-left: 1.5rem;
    padding-bottom: 5px;
    padding-top: 5px;
    border-bottom: 3px solid white;
    font-size: 1.5rem;
}
#addItem {
    border-radius: 5px;
    top: 14%;
    background: none;
    resize: none;
    text-align: center;
    height: 25px;
    font-size: 20px;
}
#toDo, #addItem {
    border: 3px solid white;
    width: 50%;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    outline: none;
	overflow: scroll;
}
*{margin:0;padding:0;}
::-webkit-scrollbar{width:0px;}