.theme-color-category-gallery {
    position: relative;
    width: 80%;
    height: auto;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin: 200px auto 0;
    background-color: rgba(44, 0, 57, .2);
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.theme-color-category-span {
    position: absolute;
    width: 20px;
    height: 20px;
    clip-path: circle();
    top: -11%;
    right: 1%;
    animation: FadeLoadingAnimation .75s forwards;
    animation-delay: .25s;
    opacity: 0;
}

.theme-color-category-title {
    position: absolute;
    top: -15%;
    right: 10%;
    font-family: 'KalamehSemiBold';
    font-size: 1.2rem;
    animation: FadeLoadingAnimation 1s forwards;
    animation-delay: .25s;
    opacity: 0;
}

.theme-color-category-card {
    width: 200px;
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: auto;
}

.theme-color-category-card img {
    width: 150px;
}

.theme-color-category-card a {
    width: 120px;
    height: 30px;
    font-family: 'KalamehRegular';
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border-radius: 5px;
    margin: 10% auto;
}

.theme-color-category-card a:active {
    transform: scale(.9);
}

@media (width <= 390px) {
    .theme-color-category-span {
        top: -16%;
    }

    .theme-color-category-title {
        top: -20%;
        right: 15%;
    }
    .theme-color-category-card {
        width: 120px;
        height: 170px;
    }

    .theme-color-category-card img {
        width: 100px;
    }
}