header.parallax {
    /* The image used */
    background-image: url("../images/about-backdrop-edit2.jpg");

    min-height: 100vh;

    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.row {
    padding-top: 3rem;
}

#artist-pic {
    display: block;
    max-width: 33rem;
    max-height: 33rem;
    width: auto;
    height: auto;
    margin: 0 auto;
    margin-right: 1.5rem;
}

#description p {
    font-family: 'Alegreya Sans', sans-serif;
    color: rgba(79, 73, 67, 1);
}

#description h1, h2 {
    font-family: 'League Script', handwriting;
    color: rgba(82, 80, 78, 0.9);
}

#description h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

#description h2 {
    font-size: 2rem;
    font-weight: 600;
}


#description strong{
    font-weight: 600;
}

@media all and (max-width: 992px) {
    #artist-pic {
        margin: 0 auto;
        max-width: 33rem;
        max-height: 33rem;
        width: auto;
        height: auto;
    }

    #artist-name {
        margin-top: 2rem;
    }

    #description h1, h2 {
        text-align: center;
    }

    #description p {
        margin-right: 0 !important;
    }
}

@media all and (max-width: 390px) {
    #artist-pic {
        margin: 0 auto;
        max-width: 20rem;
        max-height: 20rem;
        width: auto;
        height: auto;
    }

}