<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*gallery start*/
.thumb img {
    -webkit-filter: grayscale(0);
    filter: none;
    border-radius: 1.5rem;
    background-color: #fff;
    box-shadow: 0 0rem 0.5rem rgb(0 0 0 / 25%);
}
.thumb img:hover {
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
}
.thumb {
    padding: 10px;
}
@media (min-width: 768px){
    .thumb {
        padding: 15px;
    }
}
.thumb img:hover {
    -webkit-filter: opacity(0.8);
    filter: opacity(0.8);
}
.thumb p {
    color: black;
    font-style: italic;
    margin-top: 0.5rem;
    font-size: 1rem;
}
@media (max-width: 767px){
    .thumb p {
        font-size: 0.7rem;
    }
}
.thumb a:hover {
    text-decoration: none;
}
/*gallery end*/</pre></body></html>