nav {
    margin-bottom: 20px;
}

.navbar-item-logo,
.navbar-item-logo img#logo {
    height: 64px;
    width: 64px;
    max-height: none;
}

main {
    padding: 20px;
    max-width: 1600px;
    margin: auto;
}


.preview-images-container {
    display: flex;
    flex-wrap: wrap;
    column-gap: 4rem;
    row-gap: 4rem;
    justify-content: left;
    align-content: center;
}
@media screen and (max-width: 768px) {
    .preview-images-container.has-elements {
        justify-content: center;
    }
}

.preview-img {
    width: 100px;
    height: 100px;
    background-size: cover;
    position: relative;
    cursor: pointer;
}

.preview-img .unpin-icon {
    position: absolute;
    top: -10px;
    right: -10px;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    background: black;
    color: white;
    cursor: pointer;
}

.preview-docs-container {
    display: flex;
    flex-direction: column;
    column-gap: 4rem;
    row-gap: 1rem;
    justify-content: center;
    align-items: start;
}
.preview-doc {
    padding: 5px;
    position: relative;
    display: flex;
    align-items: center;
    column-gap: 1rem;
    background: #333333;
    color: white;
    border-radius: 12px;
    cursor: pointer;
}