body {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 1em;

    /* Sticky footer */
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}
main {
    flex: 1;
}

/* Formatting for artist bubbles */
.artist-profile {
    padding: 40px;
    text-align: center;
}
.artist-profile:hover {
    color:rgb(116, 116, 116); 
    text-decoration:none; 
    cursor:pointer;  
}
.artist-profile h3 {
    padding-top: 30px;
    font-size: 2em;
}
.artist-profile img {
    width: 100%;
    border-radius: 50%;
}

/* Center Bootstrap columns in row */
.col-centered{
    float: none;
    margin: 0 auto;
}

.vertical-align {
    display: flex;
    align-items: center;
}

/* Removing blue link formatting */
a {
    color: inherit; 
}

/* Optional style to enlarge Bootstrap container */
/* @media (min-width: 1200px) {
    .container{
        max-width: 1400px;
    }
} */

/* Blockquote formatting (border, quote icon) */
blockquote {
    background: #f9f9f9;
    border-left: 10px solid #ccc;
    margin: 1.5em 10px;
    padding: 0.5em 10px;
    quotes: "\201C""\201D""\2018""\2019";
}
blockquote:before {
    color: #ccc;
    content: open-quote;
    font-size: 4em;
    line-height: 0.1em;
    margin-right: 0.25em;
    vertical-align: -0.4em;
}
blockquote p {
    display: inline;
}

/* YouTube video wrapper for 100% width */
.videoWrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    padding-top: 25px;
    height: 0;
}
.videoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Grow */
.hvr-grow {
    display: inline-block;
    vertical-align: middle;
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    transition-duration: 0.3s;
    transition-property: transform;
}
.hvr-grow:hover,
.hvr-grow:focus,
.hvr-grow:active {
    transform: scale(1.15);
}