body {
    margin: 0;
    background: linear-gradient(rgba(6, 59, 232, 0.5), rgba(255, 59, 232, 0.25)),url(images/FFXIV-5-1-780x410.jpg);
    background-size: cover;
    background-position: left top;
    background-attachment: fixed;
    font-family: 'Poppins', sans-serif;
}

#listContainer {
    background: linear-gradient(rgba(6, 59, 232, 0.7), rgba(255, 59, 232, 0.25));
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    margin: 0 auto;
    max-width: 600px;
    min-width: 350px;
    margin-top: 20px;
    color: azure;
    border: 1px solid #8780d0;
    border-radius: 10px;
    box-shadow: 5px 5px 20px #51406a;
    padding: 15px;
}

header {
    margin: 0 auto;
    color: azure;
    text-align: center;
    padding: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    font-family: 'Cinzel', serif;
    text-shadow: 1px 1px 5px azure;
}

#description {
    margin-bottom: 40px;
}

#addToList {
    margin-right: 10px;
    background: rgba(255, 255, 255, .70);
    border: none;
    padding: 5px 20px;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    width: 70%;
}

#submit {
    background: rgba(255, 255, 255, .80);
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
}

#submit:hover {
    cursor: pointer;
    background-color: rgba(255, 255, 255, .90);
}

#listContent {
    list-style-type: none;
    display: inline-block;
    /*justify-content: center;*/
    margin: auto;
    padding: 0px;
    width: 100%;
}

#listContent li {
    color: #1F1E1C;
    background: rgba(255, 255, 255, .70);
    /*text-align: center;*/
    margin: 15px;
    border: 1px solid #342b41;
    border-radius: 5px;
    height: 25px;
    padding: 5px 0px 5px 40px;
}

#listContent li:hover {
    background-color: rgba(255, 255, 255, .80);
    box-shadow: 1px 1px 15px white;
    border: 1px solid darkgray;
}

li span.delete {
    float: right;
    background-color: rgba(165, 106, 176, 0.8);
    font-size: 1.47em;
    margin-top: -5px;
    margin-right: -1px;
    width: 30px;
    padding-left: 15px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

li span.delete:hover {
    cursor: pointer;
    color: white;
}

li span.select {
    border: 1px solid darkgray;
    border-radius: 3px;
    float: left;
    width: 25px;
    height: 25px;
    margin-left: -32px;
    background-image: url(images/unchecked.svg);
    background-position: center center;
    background-repeat: no-repeat;
}

li span.selected {
    border: 1px solid darkgray;
    border-radius: 3px;
    float: left;
    width: 25px;
    height: 25px;
    margin-left: -32px;
    background-image: url(images/check.svg);
    background-position: center center;
    background-repeat: no-repeat;
}