html, body {
    height: 100%;
    font-size: 10px;
}
header {
    padding: 10px;
    background: linear-gradient(90deg, #ff00ff, #ff9900, #00ffff, #ff00ff);
    text-align: center;
    margin-bottom: 10px;
    box-shadow: 1px 1px 8px whitesmoke;
    border-radius: 10px;
    

}
body {
    background-image: url(../img/record-player.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    margin: 10px;
    
    
    
    
}
h1 {
    font-family: "Concert One", sans-serif;
    font-size: 3rem;
    text-transform: uppercase;
    max-width: 500px;
    text-align: center;
    margin: 0 auto;
    text-shadow: 1px 1px 10px crimson;
   
   
    
}
ul li {
    font-family: "Lato", sans-serif;
    font-size: 2rem;
    color: #00f5ff;
    text-shadow: 0 0 7px whitesmoke;
    margin: 4px;
    padding: 20px 5px 20px 70px;
    background-color: rgba(255, 0, 255, .55);
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
    border-radius: 10px;
    border: 2px double black;
    position: relative;
}
li:hover {
    cursor: grab;
    background-color: rgba(255, 100, 255, .75);
}

li span.delete {
    position: absolute;
    top: 30%;
    right: 0;
    background-color: rgba(0, 0, 0, .8);
    padding: 3px 9px;
    border-radius: 15px;
    margin-right: 5px;
}
li span.select {
    position: absolute;
    top: 15%;
    left: 0;
    width: 50px;
    height: 50px;
    background-image: url(../img/unchecked.png);
    background-position: center center;
    background-repeat: no-repeat;
}
li span.selected {
    position: absolute;
    top: 15%;
    left: 0;
    width: 50px;
    height: 50px;
    background-image: url(../img/checked.png);
    background-position: center center;
    background-repeat: no-repeat;
}


ul {
   width: 96%;
   max-width: 650px;
   margin: 0 auto;
}
#addToList {
    padding: 5px 10px;
    height: 40px;
    width: calc(96% - 70px);
    max-width: calc(640px - 70px);
    font-size: 16px;
    border-radius: 10px;
    background-color: rgba(224, 247, 255, 0.6);
    border: 2px double black;
    font-family: "Lato", sans-serif;
    box-sizing: border-box;
    margin: 4px 0;
}
#addToList:focus {
    background-color: rgba(190, 230, 255, 0.75);
}
#submit {
    width: 60px;
    margin-left: 10px;
    height: 40px;
    color: black;
    border-radius: 10px;
    font-family: "Lato", sans-serif;
    font-size: 16px;
    border: 2px double black;
    cursor: pointer;
    background-color: rgba(181, 127, 255, 0.8);
} 
#submit:hover {
    background-color: rgba(191, 147, 255, 0.9);
}