/* external css: flickity.css */

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
}

.gallery {
    background: #EEE;
}

.gallery-cell {
    width: 66%;
    margin-right: 10px;
    counter-increment: gallery-cell;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

/* cell number */
.gallery-cell:before {
    display: block;
    text-align: center;
    content: "";
    font-size: 80px;
    color: white;
}