.exp-tabs-container {
    display: grid;
    margin: 0 auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    width: 101%;
    margin-left: -0.5%;
}

#top-separebar {
    margin-bottom: 0;
}
.main-content {
    width: 100%;
    padding: 0;
    margin-top: -0.5rem;
    margin-bottom: -0.5rem;
}

.exp-tabs {
    border: 1px solid var(--textcolor);
    padding: .25rem;
}

.exp-tabs-container h1 {
    font-size: 1.5rem;
    text-align: center;
}

.exp-tabs-current {
    border-right: 1px solid;
    border-left: 1px solid;
    border-bottom: none;
}

.explore {
    min-height: 70vh;
    background-color: var(--primary);
    margin: 0 auto;
    color: var(--textcolor);
    padding: .5rem;
}

.explore hr {
    color: var(--)
}

.filter {

}

.results-bands {
    column-count: 3;
    column-gap: .5rem;
}

.float-bands {
    width: 95%;
    margin: 1rem auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: .5rem;
}

.band {
    border: .25rem solid;
    color: var(--textcolor);
    height: auto;
    text-align: center;
    word-wrap: break-word;
    margin-bottom: .5rem;
    display: inline-block;
    width: 95%;
}

.band img {
    width: 100%;
}

.band-name {
    height: 100%;
}

.band p {
    font-size: 1rem;
    font-weight: bold;
    margin: 0 .25rem .25rem;
}

.label {
    font-size: 1.5rem;
    height: 4rem;
    line-height: 4rem;
    text-align: center;
    width: 98%;
    margin: 0 auto .5rem;
    border: .25rem var(--textcolor) solid;
}

.label img {
    object-fit: contain;
    float: left;
    height: 4rem;
}

.shows {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: .5rem;
    row-gap: 2rem;
}

.show {
    text-align: center;
}

.show h2 {
    font-size: 1.25rem;
}

.show h3 {
    font-size: 1rem;
}

.show img {
    max-width: 100%;
    max-height: 12rem;
}

@media screen and (min-width: 700px) {
    .exp-tabs-container {
        display: grid;
        margin: 0 auto;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        width:100%;
    }
    .explore {
        border: 1px solid var(--textcolor);
        border-top: none;
    }

    .results-bands {
        column-count: 4;
    }

    .float-bands {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    .band p {
        font-size: 1.5rem;
    }

    .label {
        max-width: 420px;
    }

    .show img {
        max-height: 15rem;
    }

    .show h2 {
        font-size: 1.5rem;
    }

    .show h3 {
        font-size: 1.25rem;
    }
}
