*{
    margin: 0;
}
body{
    min-width: 100vw;
    min-height: 100vh;
    background-image: url(../images/photo-1501791187590-9ef2612ba1eb.jpg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    display:flex;
    justify-content: center;
    align-items: center;
}
#container{
    background-color: rgba(0, 0, 0, 0.4);
    width: clamp(600px, 100vw, 800px);
    height: auto;
    overflow: auto;
    display: flex;
    scrollbar-color: grey rgba(0, 0, 0, 0.4);
    scroll-snap-type: x mandatory;
    column-gap: 20px;
}
img{
    max-width: 100vw;
    height: auto;
}
figure{
    scroll-snap-align: center;
}
figcaption{
    color: white;
    font-family: 'Times New Roman', Times, serif;
    text-align: center;
    font-size: clamp(1em, 4vh, 2em);
}
figure:first-child,figure:last-child{
    scroll-snap-align: none;
    min-width: 30px;
    min-height: 30px;
}