@import url('https://fonts.googleapis.com/css2?family=PT+Sans+Narrow&display=swap');

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        a {
            text-decoration: none;
        }

        .lazyload {
            opacity: 0;
            transition: opacity 0.15s ease-in-out;
        }

        .lazyload.loaded {
            opacity: 1;
        }

        .gallery-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: fit-content;
            margin: 0 auto;
        }

        .counter-container span {
            display: flex;
            justify-content: flex-end;
            width: 100%;
            font-family: 'PT Sans Narrow', sans-serif!important;
            font-size: 16px;
            margin-bottom: 10px;
            padding: 5px 0;
        }

        .gallery {
            display: inline-flex;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: center;
            margin: auto;
        }

        .gallery-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            transform: scale(0.95);
            animation: fadeIn 0.25s forwards ease-in-out;
            cursor: pointer;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: scale(0.95); }
            to { opacity: 1; transform: scale(1); }
        }

        .gallery-item img {
            width: 100%;
            height: 75px;
            outline: none;
            object-fit: cover;
            transition: box-shadow 0.25s ease-in-out;
        }

        .gallery-item a:hover img {
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
            transition: box-shadow 0.5s ease-in-out;
        }

        .gallery-item span {
            display: inline-flex;
            justify-content: center;
            width: 100%;
            margin-top: 5px;
            font-family: 'PT Sans Narrow', sans-serif;
            font-size: 14px;
            color: #000;
            opacity: 0;
            background-color: #fff;
            outline: 1px solid #ccc;
            transition: opacity 0.25s ease-in-out, outline 0.25s ease-in-out, background-color 0.25s ease-in-out;
        }

        .gallery-item span {
            opacity: 1;
        }

        .gallery-item a:hover span {
            color: #fff;
            background-color: #464646;
            outline: 1px solid #464646;
            transition: outline 0.25s ease-in-out, background-color 0.25s ease-in-out;
        }