#app {
    width: 320px;
    background-color: whitesmoke;
    border-radius: 15px;
    padding: 10px;
    margin: auto;
}

h1 {
    font-size: 24px;
}

small {
    font-weight: normal;
}

ul {
    padding-left: 0;
}

li {
    padding: 5px;
    border: 1px solid transparent;
    list-style: none;
}

li:not(.no-hover):hover {
    border-color: darkblue;
}

li.completed {
    text-decoration: line-through;
    color: grey;
}

li#toggle-show-completed {
    text-align: center;
}

a {
    text-decoration: none;
}

a.remove {
    float: right;
    padding: 1px 4px;
    color: darkred;
}

a.remove:hover {
    background-color: darkred;
    color: whitesmoke;
    border-radius: 15px;
}

div#toggle {
    text-align: center;
    padding: 5px;
}

input[type="text"] {
    height: 30px;
    width: 268px;
}

button {
    height: 36px;
}

.hidden {
    display: none !important;
}