.container{
    min-height: 25vh;
}
.spacer{
    margin-top: 5%;
}
.text{
    justify-self: flex-start;
    width: 65%;
}
.hobbyGallery{
    overflow-x: hidden;
}
.hobbyGallery img{
    width: 25vw;
    height: 40vh;
    border-radius: 10px;
    border: 4px solid black;
}
#leftAlign{
    justify-self: flex-start;
}
#rightAlign{
    justify-self: flex-end;
}
.flexLeft{
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-around;
}
.flexRight{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}
.content{
    transform: translateX(400%);
    transition: transform 0.7s ease;
}
.content:nth-of-type(even){
    transform: translateX(-400%);
}
.content.show{
    transform: translateX(0);
}
/*Responsive images*/
@media (max-width: 750px){
    .hobbyGallery{
        font-size: small;
        overflow-x: hidden;
    }
    .hobbyGallery img{
        width: 25vw;
        height: 15vh;
        border-radius: 10px;
        border: 2px solid black;
    }
}