﻿body {
    margin: 0;
    padding: 0;
    background-color: #eee;
}

.galleryFilters {
    margin: 20px auto;
    align-content: center;
}

    .galleryFilters .filterList {
        display: contents;
        justify-content: space-between;
        margin: 5px;
    }

        .galleryFilters .filterList .filterListItem {
            margin-right: 10px;
        }

            .galleryFilters .filterList .filterListItem.active {
                background-color: #9517c3;
            }

    .galleryFilters .violetBtn {
        background-color: #610f7f;
        color: #ffffff;
        margin-bottom: 5px;
    }

    .galleryFilters .searchBar {
        flex-grow: 1;
        width: auto;
        border-color: #610f7f;
    }

        .galleryFilters .searchBar:focus {
            box-shadow: 0px 0px 5px #610f7f;
        }


.galleryContainer .thumbnail {
    padding-bottom: 20px;
    position: relative;
    border-radius: 5px;
    display:block;
}

    .galleryContainer .thumbnail img {
        width: 100%;
        border-radius: 5px;
        box-sizing: border-box;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
        
       
    }

    .galleryContainer .thumbnail .item-desc {
        position: absolute;
        top: 1px;
        right: 15px;
        display: inline-block;
        text-transform: uppercase;
        color: lightcyan;
        background-color: #610f7f;
        padding: 5px 10px;
        border-radius: 5px;
    }


    .galleryContainer .thumbnail .item-desc1 {
        position: absolute;
        bottom: 20px;
        left: 15px;
        /*        opacity: 0.5;*/
        color: black;
        text-align: center;
        display: block;
        text-transform: uppercase;
        color: lightgrey;
        background-color: green;
        padding: 5px 10px;
        border-radius: 5px;
    }




   






