/* CSS Document */

p {
    font-family: libreFranklin600;
    color: #999999;
    font-size: 12px;
    margin-bottom: 15px;
}

/* grid for content area */

.content-container {
    display: grid;
    grid-template-columns: 875px;
    grid-template-areas: /* using just one column, which then gets split into 3 flowing cols via column-count below */
        "col-1"
    ;
    grid-gap: 30px;
    padding: 30px 36px;
}



#artistCredit {
    text-align: center;
    padding: 10px 0;
}

col-1 {
    grid-area: col-1;
    margin-top: 40px;
    column-count: 3;
    /* this is to make CSS multi-column inside CSS grid */
    column-gap: 30px;
}

hr {
    margin: 12px 0;
    border-top: 1px solid #424242;
}

h6 {
    font-size: 18px;
    margin-bottom: 12px;
    column-span: all;
}

h6.innerh6{
    column-span: none;
    color:gray;
    margin-bottom: 2px;
    
}
.break{
    break-before: column;
}



a:link,
a:visited,
a:hover,
a:active {
    color: gray;
    text-decoration: none;
} 

a.main-link {
    color: #999999 !important;
    text-decoration: underline !important;
}

a.artist-link {
    color: #cccccc;
    text-decoration: underline;
}

a.download-link {
    font-family: 'oswald500';
    display: block;
    padding-left: 17px;
    background-image: url("../assets/ui/png/r-arrow-gray.png");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: left;
}

a.download-link:link {
    color: #cccccc;
}

a.download-link:visited {
    color: #cccccc;
}

a.download-link:hover {
    color: #ffffff;
}

a.download-link:active {
    color: #cccccc;
}

a.downloadLink {
    font-family: oswald500;
    text-transform: uppercase;
    font-size: 13px;
    color: white;
}
