body{
  background-color: #000;
}


.pictureContainer {
    margin: 0 auto;
    margin-top: 250px;
    background-color: #000;    
    margin-bottom: 100px;
    width: 400px;
    height: 300px;
    overflow: hidden;
}


.pictureContainer img {
    transform: translate3d(0px, 0px, 0px);
    transition: transform 0.666s ease-in-out;
}

.pictureContainer img:hover {
    transform: translate3d(0px, -300px, 0px);
}
