body {
    width: 90%;
    display: flex;
    flex-flow: column nowrap;
    margin: auto;
}

.proj_main {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
}

.proj_title {
    text-align: center;
}

.proj_title p {
    margin-top: 0px;
}

.proj_content {
    width: 95%;
    display: flex;
    flex-flow: row;
    justify-content: space-evenly;
}

.imageContainer {
    margin-top: 25px;
    width: 100%;
    height: 100vh;
    background-color: white;
}

.animPreview {
    max-width: 940px;
    margin: auto;
    width: 100%;
    display: table;
    margin-top: 0vh;
}

.hover {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
}

.hover li {
    position: relative;
    max-width: 293px;
    background-color: blueviolet;
    width: 100%;
    height: 400px;
    margin: 10px;
    float: left;
    overflow: hidden;
    cursor: pointer;
}

.b1,
.b2,
.b3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 135px;
    background-color: paleturquoise;
    transition-duration: 0.8s;
}

.b2 {
    top: 133px;
    width: 100%;
    left: 293px;
    background-color: #6c4ca3;
    transition-duration: 0.8s;
}

.b3 {
    top: 266px;
    transition-duration: 0.8s;
}

.hover li:hover .b1,
.hover li:hover .b3 {
    width: 100%;
}

.hover li:hover .b2 {
    left: 0;
}

.hover li h2 {
    position: absolute;
    top: 186px;
    color: #fff;
    text-transform: uppercase;
    font-size: 25px;
    z-index: 1;
    left: -100px;
    transform: translate(-50%);
    width: 134px;
    letter-spacing: 1px;
    transition-duration: 1.5s;
}

.hover li:hover h2 {
    left: 40%;
}

.img {
    background-position: center;
    background-repeat: no-repeat;
}
