#showcase {
    width: fit-content;
    margin: auto;
    margin-top: 75px;

    position: relative;
    
    padding: 0px;
    border-radius: 2px;
    
    background-color: #fefefe;
    box-shadow: 0 0 15px 10px rgba(10,10,10,.9);
}

#showcase img {
    max-height: 75vh;
    max-width: 100vw;
    /* reduce the bottom margin because of a bogus padding issue in #showcase */
    margin-bottom: -10px;
    
    border-style: solid;
    box-sizing: border-box;
    border-width: 1px;
    border-radius: 2px;
}

#tags {
    position: absolute;
    top: 25px;
    right: -50px;
}

#showcase_tag1, #showcase_tag2 {
    display: flex;
    
    width: 25vw;
    padding: 5px;
    margin: 10px;
    
    color: #fefefe; /* #fefefe;#101010 */
    text-align: left;
    overflow: hidden;
    
    box-sizing: border-box;
    /* background-color: #234E8C; */
    background-color: rgba(0,0,0,.8);
    border-radius: 5px;
    box-shadow: -3px 3px 3px 1px rgba(0,0,0,.8);
}

#showcase_tag1 p, #showcase_tag2 p {
    margin: auto 0;
}

#showcase_tag2 img {
    float: right;
    
    max-height: 3vw;
    max-width: 3vw;
    
    background-color: #222;
    border-radius: 10px;
    border-style: hidden;
    border-width: 1px;
    margin: 5px;
    
    transition-duration: 0.1s;
}

#showcase_tag2 img:hover {
    filter: brightness(150%);
    border-style: solid;
    
    cursor: pointer;
}

#navPanel {
    height: max-content;
    width: fit-content;
    
    padding: 10px;
    
    margin-top: 75px;
    margin-left: auto;
    margin-right: auto;
    
    background-color: #232323; /* #232323; */
    border-radius: 10px;
}

.panel {
    padding: 5px;
    height: 256px;
    border-radius: 10px;
    background-color: #222;
    filter: contrast(120%);
    box-sizing: border-box;
    border-width: 2px;
    border-color: black;
    border-style: solid;
    transition-duration: 0.1s;
}

.panel img {
    border-width: -2px;
    border-color: white;
    border-style: solid;
}

.panel:hover {
    cursor: pointer;
    margin: -2px;
    height: 260px;
    filter: contrast(150%);
    background-color: black;
    border-width: 2px;
    border-color: white;
    border-style: solid;
    box-shadow: 0 0 5px 2px rgba(0,0,0,.7);
    z-index: 10;
}



@media screen and (max-width: 600px) {
    
    #showcase {
        max-width: 90vw;
        margin-top: 75px;

        box-shadow: 0 2px 6px 4px rgba(10,10,10,.9);
    }

    #showcase_tag1, #showcase_tag2 {
        position: relative;

        width: 90vw;
        height: 6vh;
        margin: auto;
        margin-top: 4px;
        padding: 0 5px 0 5px;
        
        right: 0;
        
        border-radius: 3px;
        box-shadow: 0 0 3px 1px rgba(0,0,0,.9);
    }
    
    #showcase_tag1 p, #showcase_tag2 p {
        font: 10px/1.2 sans-serif;
    }
    
    #showcase_tag1 {
        top: 0;
        margin-top: 6px;
    }

    #showcase_tag2 {
        top: 0;
        font-size: 9px;
    }
    
    #showcase_tag2 img {
        float: right;

        max-height: 6vh;
        max-width: 6vh;

        background-color: #222;
        border-radius: 5px;
        border-style: hidden;
        border-width: 1px;
        margin: 3px;

        transition-duration: 0.1s;
    }
    
    #navPanel {
        width: 76vw;

        padding: 5px;

        margin-top: 50px;
        margin-left: auto;
        margin-right: auto;

        background-color: #232323; /* #232323; */
        border-radius: 10px;

        display: grid;
        grid-template-columns: repeat(4, 1fr);
    }

}








