.main-image {
    width: 100%;
    height: 64vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: end;
}

.main-image h2 {
    color: white;
    font-size: 3em;
    text-transform: uppercase;
    text-shadow: 4px 4px 6px black;
    margin: 0;
    padding: 24px 30px;
    transform: scaleY(0.8);
    letter-spacing: 4px;
    font-weight: 350;
}

.main-image img {
    margin: 0 0 80px 24px;
    width: 280px;
}

.bio {
    background-color: white;
    box-shadow: 0 -30px 30px 30px white;
    position: relative;
    z-index: 20;
    padding-bottom: 20px;
}

.bio .social-row {
    display: flex;
    height: auto;
    position: absolute;
    right:24px;
    top:-85px;
    justify-content: flex-end;
    gap: 1rem;

    .artist-social-icon {
        width: 50px;
        height: 50px;
        background-image: url(/images/social-icons.png);
        background-repeat: no-repeat;
        background-size: 310px 310px;
        filter: invert(100%);
        border: 1px solid gray;
        border-radius: 25%;

        &.instagram { background-position: -195px 0px; }
        &.youtube { background-position: -260px 0px; }
    }

}


.bio p {
    color: rgb(74, 74, 74);
    margin: 24px;
    letter-spacing: 2px;
    text-align: justify;
}

.work {
    position: relative;
    z-index: 20;
    background: linear-gradient(white 10%, rgb(20, 20, 20) 30%);
    padding: 10px 30px 40px;
    color: white;
}

.work span.cover {
    width: 100%;
    display: block;
    text-align: center;
}

.work span.cover img {
    width: 70%;
    box-shadow: 8px 8px 20px 0 black;
}

.work h3, .work h5 {
    text-shadow: 4px 4px 6px black;
}

.work > h3 {
    margin: 32px 0 4px 0;
    font-weight: 500;
    font-size: 1.5em;
    text-transform: uppercase;
    text-decoration: underline;
}

.work > h5 {
    color: rgb(210 210 210);
    margin: 0 0 30px 0;
    font-weight: 300;
}

.work span.track {
    -webkit-user-select: none;
    user-select: none;
}

.work span.track > h3 {
    font-size: 1.0em;
    margin: 18px 0 4px 0;
    text-transform: uppercase;
    font-weight: 400;
}

.work span.track.playing > h3 { color: #00ff00; }
.work span.track.unavailable > h3 { color: gray; }

.work span.track > h5 {
    margin: 0;
    color: rgb(210 210 210);
    font-size: 0.8em;
    font-weight: 300;
}

.work a.download-button {
    display: block;
    text-align: center;
    vertical-align: middle;
    margin-top: 30px;
    padding: 10px 0px;
}

#pause-button {
    display: flex;
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    z-index: 40;
    border-radius: 100%;
    justify-content: center;
    align-items: center;
    background-color: #00ff00;
}

#pause-button i {
    height: 24px;
    width: 24px;
    background-image: url('/images/player-icons.png');
    background-size: 243px 50px;
    background-repeat: no-repeat;
}

#pause-button.pause i { background-position: -112px -25px; }
#pause-button.play i { background-position: -109px 2px; }

.hidden {
    display: none !important;
}
