section#music-section {
    background-image: url("../img/pictures/music_bg.jpeg");
    height: calc(100vh - 120px);
    width: 100%;
    background-size: cover;
    background-position: center 30%;
    overflow: hidden;
    
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    padding: 0;
    padding-top: 2%;
}

.bandcamp {
    display: flex;
    flex-direction: row;
    max-height: 610px;
    /* padding-top: 2%; */
    gap: 20px;
    align-content: center;
    justify-content: center;
    padding-top: 4%;
}

/* Hides small versions */
.smallies {
    display: none;
}

.bandcamp iframe {
    border-width: 2px;
    width: 325px;
    height: 325px;
    box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, .7);
}



.streaming {
    display: flex;
    justify-content: center;
    margin-top: 19px;
}

.streaming h2 { display: none; }

.streaming-banners {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
}

.streaming-banners a {
    width: 20%;
}
.streaming-banners a img {
    width: 100%;
    box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, .7);
    border-radius: 17px;
    transition: box-shadow 0.2s ease-in-out;
}
.streaming-banners a img:hover {
    box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 1);
}



/* ************************************** */
/*             MOBILE STYLES              */
/* ************************************** */
@media (max-width: 1030px) {
    .bandcamp {
        margin-top: 1%;
        width: 100%;
        column-count: 2;
        -webkit-column-count: 2;
        -moz-column-count: 2;
    }

    .smallies {
        display: flex;
        flex-direction: column;
        column-count: 1;
        -webkit-column-count: 1;
        -moz-column-count: 1;
        margin-top: 70px;
    }
    .smallies iframe {
        width: 100%;
        border-width: 0px;
        height: 60px;
        margin: 5px 0;
    }

    .smallies .streaming-banners {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }

    .smallies .streaming-banners a {
        width: 40%;
    }

    .bandcamp .liveEP-big, 
    .bandcamp .good-stuff, 
    .bandcamp .wolves {
        display: none;
    }

    iframe {
        border-width: 1px;
        width: 300px;
        height: 574px;
    }

    .streaming {
        display: none;
    }
}

/* 2 columns but smaller iFrames */
@media (max-width: 690px) {
    iframe {
        border-width: 1px;
        width: 275px;
        height: 500px;
    }
}

/* Phone portrait & 1 column */
@media (max-width: 660px) {

    .bandcamp {
        margin: 0 auto 0 auto;
        width: 90%;
        column-count: 1;
        -webkit-column-count: 1;
        -moz-column-count: 1;
        padding: 0;
    }

    iframe {
        border-width: 1px;
        width: 275px;
        height: 500px;
    }
}