body {
    background-color: #988DF7;
    padding: 20px;
    font-family: "Georgia", serif;
}

li {
    font-family: "Georgia", serif;
}
h1 {
    color: white;
    text-align: center;
}

a:link {
    color: pink;
}

a:visited {
    color: grey;
}

a:hover {
    font-size: 28px;
}

h3 {
    font-family: sans-serif;
    color: white;
}

h4 {
    text-align: center;
    color: pink;
}

#album-title {
    border-top: 1px solid white;
    padding-top: 10px;
}

#album-cover {
    -webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    -ms-transition: all 1s ease-in-out;
}

#album-cover:hover {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
}