.container{
    position: relative;
    padding:0;
    width: calc(100% - 150px - 30% - 2em);
    margin: 0;
    max-height: 600px;
}

.gallery{
    display: flex;
    flex-flow: row nowrap;
    margin-left: 100px;
    margin-right: 100px;
    gap:50px;
}
.gallery-wrapper{
    overflow-x: auto;
}

.gallery img{
    height:500px;
    width:100%;
    object-fit: cover;
}

.arrow-left,.arrow-right{
    position:absolute;
    z-index: 0;
    top: 275px;
    bottom: 300px;
    left: 0;
    right: auto;
    cursor: pointer;
    border: none;
    opacity: 0.4;
    transition: 600ms ease-in-out;
}

.arrow-right{
    left: auto;
    right: 0;
}

.arrow-left img, .arrow-right img{
    width:50px;
    height:50px;
}

.arrow-left:hover,.arrow-right:hover{
    opacity: 1;
}

.item{
    width: 550px;
    height: 550px;
}

.gallery #last{
    padding-right: 50px;
}

#wide p{
    font-size: 1.5em;
}

/* Responsive layout*/

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
}