﻿:root {
    --bricks-min-size: 360px;
    --bricks-min-height: 264px;
}

html {
    scroll-behavior: smooth;
}

body {
    background: url('dark-grey-terrazzo.png') repeat center;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: #FFFFFF;
    /*max-width: 1440px;
    margin: 0 auto;*/
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: none;
    overflow-x: hidden;
    text-shadow: 2px 8px 6px rgba(0,0,0,0.2),0px -5px 35px rgba(255,255,255,0.3);
}

a {
    text-decoration: none;
}

hr {
    color: #FFFFFF;
}

.glass {
    border-radius: 26px;
    backdrop-filter: blur(64px);
    padding: 8px;
    box-shadow: 0 2px 10px rgb(0 0 0 / 10%), 0 10px 15px rgb(0 0 0 / 20%);
    box-sizing: border-box;
    background-image: linear-gradient(45deg, rgba(66,60,90,0.9), rgba(66,60,90,0.9));
    mix-blend-mode: hard-light;
    /*   max-width:1600px;
    margin:0 auto;*/
}

.txtCenter {
    text-align: center;
}

.logo, .qr {
    max-width: 320px;
    height: auto;
    border-radius: 26px;
    border: 1px solid yellow;
}

.imgRound {
    border-radius: 26px;
}

#bricks {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(var(--bricks-min-size), 1fr));
    grid-gap: 1rem;
    /*width:100%;
            margin:0 auto;*/
    justify-content: space-evenly;
    justify-items: center;
    align-content: space-evenly;
    align-items: center;
}

.brick {
    text-align: center;
    border-width: 0 1px 1px 1px;
    border-style: solid;
    border-color: #888888;
    border-radius: 16px 16px 0 0;
    box-shadow: 1px 1px 3px #bebebe, -1px -1px 3px #ffffff;
    justify-content: space-evenly;
    justify-items: center;
    align-content: space-evenly;
    align-items: center;
    /*max-width:var(--bricks-min-size);*/
    /*max-height:564px !important;*/
    overflow: hidden;
}

    .brick .imgBox {
        background-color: #234567;        
        background: #FFFFFF;
        background: -webkit-radial-gradient(top right, #FFFFFF, #111111);
        background: -moz-radial-gradient(top right, #FFFFFF, #111111);
        background: radial-gradient(to bottom left, #FFFFFF, #111111);
        min-width: var(--bricks-min-size);
        min-height: var(--bricks-min-height);
    }

    .brick img {
        /*max-width: var(--bricks-min-size);*/
        /*width:100%;*/
        transition: inherit 2s;
        width: var(--bricks-min-size);
        /*height: auto;*/
        height: var(--bricks-min-height);
        overflow: hidden;
        /*        line-height: 264px;
        text-align: center;*/
    }

    .brick .brickInfo {
        margin: 16px 0;
        height: 116px;
        overflow-x: hidden;
        overflow-y: hidden;
        max-width: var(--bricks-min-size);
    }

    .brick .brickCAP {
        background-color: #FFFFFF;
        color: #111111;
        margin: 8px 0;
        padding: 8px 0;
    }

.filter-container {
    padding: 16px 0;
}

.filter-button {
    background-color: transparent;
    cursor: pointer;
    padding: 8px 16px;
    color: #FFFFFF;
    border: 1px solid yellow;
    border-radius: 26px;
    font-size: 16px;
    margin: 4px 6px;
}

    /*   .filter-button:hover {
                background-color: #f3f3f3;
                color: #3a3a3a;
            }*/

    /*     .filter-button:focus {
                background-color: transparent;
                color: #FFFFFF;
            }*/

    .filter-button.is-active {
        background-color: yellow;
        color: #111111;
    }

.post-tag {
    padding: 2px 6px;
    border: 1px solid #9b9b9b;
    border-radius: 26px;
    /*white-space: pre-wrap;*/
}

.linkICON {
    height: 24px !important;
    width: auto !important;
    border-radius: 4px;
    float: right !important;
    margin-right: 6px !important;
}
.txtNames span {
    min-height: 35px;
}