body {
    margin: 0;
    font-family: sans-serif;
    background: url("img/paris.jpg");
    background-size: cover;
    display: flex;
    justify-content: flex-end;    
    min-height: 100vh;
}

#bands {
    list-style: inside square;
    font-size: 20px;
    background: white;
    width: 500px;    
    padding: 0;
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0.05);
    
}

#bands li {
    border-bottom: 1px solid #efefef;
    padding: 20px;
}

#bands li:last-child {
    border-bottom: 0;
}

a {
    color: #ffc600;
    text-decoration: none;
}
