
/* Video */
.videowrapper {
    display: flex;
    justify-content: center;
}

video {
    max-width: 100%;
    height: auto;
}

/* Image with description */
figure {
    justify-content: center;
    flex-wrap: wrap
}

figure img {
    display: block;
    text-align: center;
    margin: auto;
    max-width: 75%;
    max-height: 100%;

}

figcaption {
    text-align: center;
    margin-top: 0;
    color: color-mix(in srgb, var(--fg), var(--bg) 40%)
}

/* Navigation block*/
.navigator {
    display: grid;
    grid-template-areas: "left right"
}

.navigator__prev {
    grid-area: left;
}

.navigator__next {
    grid-area: right;
    text-align: right;
}


/* Pagination */
.paginator {
    display:flex;
    flex-direction: column;
    align-items: center;
    
}

ul.pagination {
    display: inline-block;
    height: 100%;
}

li.page-item {
    display: inline-block;
}

.buttons {
    text-align: center;
}

.buttons img {
    image-rendering: auto;
    image-rendering: crisp-edges;
    image-rendering: pixelated;
    image-rendering: -webkit-optimize-contrast;
    justify-content: center;
}