* {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    font-family: sans-serif;
}

body {
    margin: 0;
    background-color: #eeeeee;
}

.headingblock {
    z-index: 100;
    color: #333;
    background-color: #eee;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 0;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 20px;
    padding-right: 20px;
    font-family: 'Inconsolata', monospace;
    display: flex;
    position: fixed;
    inset: 0% 0% auto;
    overflow: auto;
}

.headingblock .link-block {
    margin: 0;
    padding: 0;
}

.headingblock-instagram {
    color: #333;
    text-decoration: none;
    font-family: 'Inconsolata', monospace;
    font-size: 16px;
    margin: 0;
    padding: 0;
}

.headingblock-instagram:hover {
    color: #000;
}

.identity {
    object-fit: fill;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    font-family: 'Inconsolata', monospace;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    display: flex;
    position: static;
}

h1 {
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-weight: 400;
}

h1.identity {
    margin: 0;
    padding: 0;
}

.text-span {
    color: #888;
    padding-left: 10px;
    text-decoration: none;
}

.link-block {
    color: #333;
    text-decoration: none;
}

.w-inline-block {
    display: inline-block;
}

.link-block:active,
.link-block:focus {
    color: #000;
}

.link-block:visited {
    color: #333;
}

.collection-list-wrapper {
    padding-top: 40px;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
}

.w-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px 10px;
    margin: 0;
}

#themeshots-grid {
    column-gap: 20px;
}

.w-col {
    width: 100%;
    min-height: 1px;
    position: relative;
}

.collection-item {
    padding-bottom: 10px;
}

.image-container {
    width: 100%;
    margin-bottom: 4px;
    aspect-ratio: 1;
    overflow: hidden;
    background-color: #f5f5f5;
}

.image-container a {
    display: block;
    width: 100%;
    height: 100%;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.links-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.link-day {
    color: #000;
    font-family: 'Inconsolata', monospace;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
}

.link-theme {
    color: #888;
    font-family: 'Inconsolata', monospace;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
}

/* Responsive grid using CSS Grid */

/* 2 columns on small screens */
@media screen and (min-width: 480px) {
    .w-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 3 columns on medium screens */
@media screen and (min-width: 768px) {
    .w-row {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* 4 columns on large screens */
@media screen and (min-width: 1200px) {
    .w-row {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer {
    padding: 40px 20px 20px;
    text-align: left;
}

.footer-text {
    color: #888;
    font-family: 'Inconsolata', monospace;
    font-size: 14px;
    margin: 0;
    padding: 0;
}

.footer-text a {
    text-decoration: underline;
    color: #888;
}
