@media all and (min-width: 768px), screen {
    body div.artist-panels {
        display: flex;
        justify-content: space-around;
    }
    
    body main h2 {
        font-size: 2.5rem;
        font-weight: bold;
        margin: 5px 0;
    }
    
    body div.artist-panels {
        margin-bottom: 30px;
    }

    body div.artist-panels section.sub-category {
        max-width: 345px;
        margin: 10px auto;
        font-weight: bold;
        background-color: #dbdfe0;
        display: inline-block;
        overflow: hidden;
        border: 2px solid black;
        box-shadow: 0 0 10px 5px #000;
        -moz-box-shadow: 0 0 10px 5px #000;
        -webkit-box-shadow: 0 0 10px #000;
        border-radius: 80px;
        -moz-border-radius: 80px;
        -webkit-border-radius: 80px;
    }
    body div.artist-panels section.sub-category a {
        position: relative;
    }
    body div.artist-panels section.sub-category a img {
        width: 100%;
        height: 100%;
    }
    body div.artist-panels section.sub-category a h2 {
        position: absolute;
        bottom: 0;
        left: 25%;
        background-color: rgba(255, 255, 255, 0.5);
        transition: background-color 0.5s ease;
        color: black;
        border-radius: 12px;
        -moz-border-radius: 12px;
        -webkit-border-radius: 12px;
    }
    body div.artist-panels section.sub-category a:hover h2 {
        background-color: rgba(255, 255, 255, 1);
    }
    
    body a.link.rss {
        display: none;
    }
}

@media only screen and (max-width: 640px) {
    body div.artist-panels{
        flex-direction: column;
        align-items: center;
    }
}