.smallImg img{
    width: 100px;
    cursor: pointer;
    margin: 10px 0px 10px 0px;
    padding: 2px;
}
.galleryInv{
    text-align: center;
}
.myImage{
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    min-height: 85vh;
    display: flex;
    justify-content: center;
    align-items: end;
}
.leftButton{
    width: 60px;
    display: inline-block;
    font-size: 40px;
    cursor: pointer;
    color: white;
    text-shadow: 0px 0px 15px rgba(0, 0, 0, 1);
    transition: all 0.4s;
}
.arraysPosition{
    position: relative;
    top: -60px;
    height: 0px;
}
.leftButton:hover{
    transform: scale(1.2);
    transition: all 0.4s;
}
.rightButton{
    width: 60px;
    font-size: 40px;
    display: inline-block;
    color: white;
    text-shadow: 0px 0px 15px rgba(0, 0, 0, 1);
    cursor: pointer;
    transition: all 0.4s;
}
.rightButton:hover{
    transform: scale(1.2);
    transition: all 0.4s;
}

@media screen and (max-width: 600px) {
    .leftButton{
        font-size: 28px;
    }
    .rightButton{
        font-size: 28px;
    }
    .myImage{
        min-height: 55vh;
    }
    .smallImg img{
        width: 60px;
    }
    .arraysPosition{
        top: -40px;
    }
}
@media screen and (max-width: 500px) {
    .myImage{
        min-height: 55vh;
    }
}
@media screen and (max-width: 400px) {
    .myImage{
        min-height: 40vh;
    }
}