body {
    background-image: url(images/piano_animated_background.gif);
    background-repeat: repeat-y;
    padding: 5px 105px; /* adds padding around the link text */
    background-color: black;
    font-family: 'Arial', Arial, Helvetica, sans-serif, monospace;
    color: white;
    text-decoration: none;
}

a {
    color: white;
    text-decoration: none;
}

/* Changes color when hovering over music links */
a:hover {
  color: lightskyblue;
}

card {
    display: none;
}


a:hover + card {
  display: block;
  background-color: white;
  color: black;
}