/* external css: flickity.css */

@import url("flickity.css");

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/* body {
    font-family: sans-serif;
} */

.gallery {
    background: rgb(20, 20, 20);
    height: auto;
}

.gallery-cell {
    width: auto;
    height: auto;
    /* margin-right: 10px; */
    /* background: #8C8; */
    /*counter-increment: gallery-cell;*/
}

    /* cell number */
    .gallery-cell:before {
        display: block;
        text-align: center;
        content: counter(gallery-cell);
        line-height: 200px;
        font-size: 80px;
        color: white;
    }
