body {
    background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), 
                url("../media/chores.jpg");
    background-size: cover; 
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    margin: 0;
    height: 100vh;
}

h1 {
    font-family: "Helvetica", sans-serif;
    color: blue;
    font-size: 50px;
    text-shadow: 2px 2px black;
}

#tasks {
    display: flex;
    flex-direction:column;
    justify-content: center;
    padding: 0;
    line-height: 1.5em;
}


button {
    border-radius: 8px;
    padding: 10px;
    border: 3px solid black;
    font-weight:bold;
}

#import {
    margin-right: 20px;
    background-image: linear-gradient(rgb(0, 225, 0), green);
}

#check-all {
    margin-right: 20px;
    background-image: linear-gradient(rgb(0, 225, 0), green);
}

#remove-task {
    background-image: linear-gradient(rgba(255, 0, 0, 0.900), rgba(156, 0, 0, 0.900));
}

#all {
    display:flex;
    flex-direction:column;
    align-items: center;
}

#tasks:after {
    display: table;
    content: "";
    clear: both;
}

#tasks li {
    display: inline;
    border: 2px solid black;
    border-radius: 5px;
    text-align: center;
    float: left;
    clear: left;
    padding: 1ex;
    margin: 1ex;
    min-width: 10ex;
    color: black;
    background-image: linear-gradient(white,rgb(233, 233, 233));
}

#task-input {
    border-radius: 5px;
    padding: 5px;
}

.done {
    text-decoration: line-through;
}

a {
    font-size: 20px;
    margin-top:20px;
    color: black;
    font-weight: bold;
}