body{
    overflow: hidden;
    margin: 0;
}

.navbar{
    width: 100%;
    height: 10vh;

    background-color: #333333;
}

.wrapper {
    /*prevent default browser touch events within container*/
    touch-action: none;
    position: absolute;
    top: 0;
    z-index: -1;

    width: 100%;
    height: 844px;

    background-color: red;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.gallery{
    position: absolute;
    display: flex;
    align-items: center;

}

.gallery.mobile{
    flex-direction: column;
    justify-content: center;
}

.gallery.mobile>.picture{
    height: 80vh;
    width: 60vw;
    margin: 10vh 0 10vh 0;

    background-color: yellow;
    display: flex;
    align-items: center;
}

.picture>img{
    width: 100%;
    pointer-events: none;
    opacity: 1;
}
