* {
    color: #f0f0f0
  }
body {
    font-family: Arial, sans-serif;
    /* background-color: #f0f0f0; */
    background-color: #181818;
    margin: 0;
    padding: 0;
    display: table-cell;
    flex-direction: column;
    align-items: center;
    overflow-x: scroll;
}

html {
    display: table;
    margin: auto;
}

.gallery-container {
    width: 100%;
}

.gallery-title {
    font-size: 2em;
    font-weight: bold;
    text-align: center;
    margin: 20px 0;
    white-space: nowrap;
    width: auto;
}

.gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: max-content;
    padding: 0 20px;
    box-sizing: border-box;
    overflow-x: auto;
}

.image-item {
    margin: 10px 0;
    text-align: center;
    width: auto;
    box-sizing: border-box;
}

.image-item img {
    height: auto;
    display: block;
    margin: 0 auto;
}

.title {
    margin-bottom: 5px;
    font-size: 1.5em;
    color: #CCCCCC;
    text-align: center;
    white-space: nowrap;
}

.image-pair {
    display: flex;
    width: auto;
    gap: 10px;
}

.image-pair .image-item {
    text-align: center;
    margin: 10px 5px;
}
/* diff: 57 */
/* 935px firefox = 992 */
/* 757px         = 816 */
/* @media (max-width: 992px) {
    .title {
        font-size: 1.2em;
    }
}
@media (max-width: 816px) {
    .title {
        font-size: 1em;
    }
}

@media (max-width: 600px) {
    .title {
        font-size: 0.2em;
    }
} */