@font-face {
    font-family: Marvel;
    src: url(Marvel-Regular.ttf);
}

@font-face {
    font-family: Marvel-Bold;
    src: url(Marvel-Bold.ttf);
}

@font-face {
    font-family: Marvel-Italic;
    src: url(Marvel-Italic.ttf);
}

.fa-spin {
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear; }

@-webkit-keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg); }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg); } }

@keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg); }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg); } }

html, body {
    font-family: Marvel, cursive;
    margin: 0;
    font-size: 16px;
    background-color: #141414;
    color: #eee;
    fill: #eee;
}

b, strong {
    font-weight: bold;
    font-family: Marvel-Bold, cursive;
}

i {
    font-style: italic;
    font-family: Marvel-Italic, cursive;
}

a {
    color: inherit;
}

header {
    position: relative;
}

main {
    max-width: 850px;
    margin: 30px auto;
}

ul {
    margin: 0;
    padding: 0;
}

.buttons {
    margin-top: 20px;
    margin-bottom: 15px;
}

.button {
    border-radius: 30px;
    border: 1px solid #bbb;
    padding: 9px 0;
    margin-top: 14px;
    display: inline-block;
    text-align: left;
    width: 90%;
    text-decoration: none;
	fill: #eee;
}

.button:hover {
    background-color: #eee;
    color: #141414;
    fill: #141414;
}

.button-icon, .button-text {
    display: inline-block;
    vertical-align: middle;
}

.button-icon {
    width: 28px;
    height: 28px;
    margin-left: 16px;
    margin-right: 8px;
}

.button-text {
    font-size: 20px;
}

.divider {
    width: 100%;
    height: 1px;
    border-top: 1px solid grey;
    opacity: .5;
    margin-top: 16px;
}

#album-title {
    padding-top: 7px;
    font-size: 2.6em;
    margin-bottom: 5px;
}

#artist {
    opacity: .85;
    font-size: 1.5em;
}

#album-description, #album-release-date {
    margin: 1em 0;
    text-overflow: ellipsis;
}

.social-media-links-container {
    margin-top: 10px;
    margin-bottom: 10px;
}

.social-media-link {
    margin: 0 5px;
    transition: opacity .3s;
    display: inline-block;
	fill: #ddd;
}

.social-media-link:hover {
    opacity: .3;
}

.social-media-icon {
    width: 2.25em;
    height: 2.25em;
}

#tracks {
    display: block;
    list-style-type: disc;
}

#tracks li {
    position: relative;
    margin: 10px 0;
    list-style: none;
    transition: color 1s;
    font-size: 1.5em;
    opacity: .85;
}

#tracks li.active {
    opacity: 1;
}

#tracks .progress_bar {
    position: relative;
    height: 20px;
    clear: both;
    width: 100%;
}

#tracks .active .progress_bar {
    cursor: pointer;
}

#tracks .progress_bar_bg, #tracks .progress_indicator {
    height: 1px;
    position: absolute;
    top: 10px;
    left: 0;
    border-radius: 5px;
}

#tracks .progress_bar_bg {
    width: 100%;
    background-color: #eee;
    opacity: .25;
}

#tracks .progress_indicator {
    transition: width .5s;
    background-color: rgba(255, 255, 255, .5);
    filter: blur(1px);
    -webkit-filter: blur(1px);
}

#tracks .active .progress_bar:hover .progress_indicator {
    height: 3px;
    top: 9px;
    -webkit-filter: blur(2px);
    filter: blur(2px);
}

#tracks .play_button_shell {
    border: 0;
    background: 0 0;
    display: inline-block;
    vertical-align: top;
    float: left;
    position: relative;
    padding: 5px;
    margin: 7px 0 0 8px;
    font-size: 22px;
    cursor: pointer;
    transition: transform .25s;
}

.track_play_pause_button {
    width: 25px;
    height: 25px;
    display: block;
}

.track_name_and_duration {
    margin-left: 55px;
}

#tracks .track_duration {
    float: right;
    margin: 0 0 5px 10px;
    min-width: 36px;
    text-align: right;
}

#tracks li.active .track_name {
    font-weight: 700;
}

#tracks .track_artist_name {
    margin-left: 55px;
    font-style: italic;
    font-size: .8em;
}

#tracks li button:focus, #tracks li button:hover {
    transform: scale(1.2, 1.2);
}

.pause_button_icon {
    display: none;
}

.spinner {
    width: 25px;
    height: 25px;
    display: none;
}
