.discord-showcase {
    display: flex;
    flex-wrap: wrap;
    /*background-color: blueviolet;*/
    margin-left: 2%;
    margin-right: 2%;
    padding: 5px;
    justify-content: center;

    .discord-server {
        border: white solid;
        flex-grow: 2;
        margin: 5px;
        min-width: 200px;
        max-width: 402.183px;
        max-height: 279.430px;
        border-radius: 5px;
        overflow-y: hidden;
        transition: 0.25s ease;
        background-color: #ececec;

        img {
            width: 100%;
            display: flex;
            border-bottom: solid #ececec;
        }

        .discord-text {
            font-size: 18px;

            .invite-box {
                display: flex;
                align-items: center;
                flex-direction: column;
                margin-top: 10px;

                a {
                    text-align: center;
                    width: fit-content;
                    padding: 5px;
                    margin-bottom: 5px;
                    border: white solid;
                    border-radius: 5px;
                    background-color: #2c2c2c;
                    color: #ececec;
                    text-decoration: none;
                    transition: 0.25s ease scale;

                    &:hover {
                        scale: 1.1;
                    }
                }
            }

            h2 {
                text-align: center;
                margin: 0;
            }
        }
    }
}

#cmcdev,
#rabbitstewgames,
#fens_den,
#its_a_gluttonous_life,
#phantoms_curse,
#nom_you,
#mmvrs,
#decadent_deity,
#dibs,
#maw_mansion {
    &:target {
        max-width: -webkit-fill-available;
        height: 100%;
        max-height: 500vw;
        margin-left: 5vw;
        margin-right: 5vw;

        .discord-text {
            filter: blur(0px) opacity(100%);
            margin: 5px 10px;
            background-color: #121212 !important;
        }
    }

    .discord-text {
        filter: blur(10px) opacity(0%);
        transition: 0.50s ease;
        background-color: #ececec !important;

        a {
            color: #ececec;
        }
    }
}

.discord-server:target {
    background-color: #121212 !important;
}