@import url("base.css");

#content {
    margin-left: 2rem;
    margin-right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

#content img {
    width: 100%;
    max-height: min(90vw, var(--max-body-width) - 10rem);
    object-fit: contain;
}

#filter {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

#filter > input {
    align-self: center;
    width: 5em;
}

#tag-list {
    overflow: auto;
}

#tag-item {
    display: inline-block;
    margin: 0.25rem;
}

/*@media (max-width: 50rem) {*/
/*    #filter {*/
/*        flex-direction: column;*/
/*        text-align: left;*/
/*        align-self: center;*/
/*        width: 10rem;*/
/*    }*/
/*}*/

#navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
}