.custom-font {
    font-family: 'Source Sans 3', sans-serif;
}
.navbar-brand img {
    width: 225px;
}
.gallery-masonry {
    —gap: clamp(1rm, 5vmin, 2rem);
    columns: 360px;
    gap: var(—gap);
    width: 96%;
    max-width: 1260px;
    margin: 5rem auto;
    border-radius: 5px;
}
.gallery-masonry>* {
    break-inside: avoid;
    margin-bottom: var(—gap);
}
.gallery-item {
    padding-bottom: 2rem;
}
.gallery-item img {
    max-width: 100%;
    max-height: 100%;
    box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.2s;
}
.gallery-item:hover img {
    box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.35);
}
img {
    overflow-clip-margin: content-box;
    overflow: clip;
    border-radius: 5px;
}