body {
    font-family: Arial, Helvetica, sans-serif;
    background: #111;
    color: #eee;
    margin: 0;
    padding: 20px;
}

h1 {
    text-align: center;
    font-weight: normal;
    margin-bottom: 30px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.item {
    background: #1c1c1c;
    border-radius: 6px;
    padding: 10px;
    text-align: center;
}

.item img {
    max-width: 100%;
    border-radius: 4px;
}

.item span {
    display: block;
    margin-top: 8px;
    font-size: 0.85em;
    word-break: break-all;
    color: #aaa;
}

a {
    text-decoration: none;
    color: inherit;
}
