.site-content {
    flex-direction: column;
    gap:10px;
}

.site-title {
    color:#fff;
    font-weight: 900;
}

.gallery-grid {
    column-count: 3;
    column-gap: 10px;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 10px;
    opacity: 0;
    animation: fadeIn 2s ease-out forwards;
}


@media only screen and (max-width:768px) {
    .gallery-grid {
        column-count: 2;
    }
}