<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
    margin: 0;
    padding: 0;
    background-color: black;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    grid-gap: 5px;
}

/* Media queries for different breakpoints */
@media screen and (min-width: 800px) {
    .image-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

/* Media queries for different breakpoints */
@media screen and (min-width: 1024px) {
    .image-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

.image-grid img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
}

/* make h1 always light gray */
h1 a {
    color: #ccc;
    text-decoration: none;
    font-family: et-book, Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Georgia, serif;
    padding: 12px;
}

h1 {
    margin: 0;
    border: 0;
    padding: 12px;
}
</pre></body></html>