.feed:empty {
    display: none;
}

body {
    background: #0a0a0a;
    color: #e5e5e5;
    margin: 0;
    padding: 10px;
}

.main {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}


h1 {
    font-family: "Datatype", monospace;
    font-size: clamp(2.5em, 8vw, 6em);
    letter-spacing: -2px;
    text-align: center;
}

.sub {
    font-family: monospace;
    font-size: clamp(0.8em, 2vw, 1em);
    opacity: 0.6;
    text-align: center;
}

.feed {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 2px;
}

.feed img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    background: #000;
    display: block;
}

.feed p {
    font-family: monospace;
    font-size: 0.9em;
    padding: 20px;
    opacity: 0.7;
}

@media (max-width: 600px) {
    .feed {
        grid-template-columns: 1fr;
    }

    h1 {
        margin-top: 40%;
    }
}
