body {
    background: #111;
    color: white;
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
}

.title-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    position: relative;
}

.title-bar img {
    position: absolute;
    left: 20px;
    height: 75px;
}

.title-bar h1 {
    margin: 0;
}

.gallery {
    column-count: 5;
    column-gap: 13px;
    padding: 20px;
    max-width: 2000px;
    margin: auto;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 10px;
    background: #222;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.5s;
    display: inline-block;
    width: 100%;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
}

.gallery-item a {
    display: block;
}

