.container {
    margin: 0;
    padding: 0;
}

/* index.html */
.background img {
    width: 100%;
    height: 125%;
    position: absolute;
    z-index: -1;
    top: 0;
}

#show-list {
   display: none; 
   margin-top: 6%;
   background: linear-gradient(to right, rgba(101, 187, 236, 0.89), rgba(250, 250, 114, 0.877));
   border-radius: 2px;
   padding: 20px;
   margin-left: 2%;
   box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
   font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

#show-list span {
    font-weight: 600;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.addButton {
    background: linear-gradient(to right, rgba(28, 68, 241, 0.89), rgba(85, 230, 28, 0.877));
    color: white;
}

.task-form {
    background-color: rgba(255, 255, 0, 0.863);
    padding: 20px;
    margin-top: 3%;
    padding-top: 80px;
    padding-bottom: 80px;
    box-shadow: rgba(6, 24, 44, 0.4) 0px 0px 0px 2px, rgba(6, 24, 44, 0.65) 0px 4px 6px -1px, rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
}

.deleteButton {
    background-color: red;
    border-radius: 5px;
    outline: none;
    border: none;
    padding: 5px;
    color: white;
}

#list li {
    cursor: pointer;
    background-color: goldenrod;
    padding: 1px;
    width: 70%;
    margin-bottom: 1px;
    font-family: cursive;
    font-size: 1.1rem;
}
