.black_and_white {
    -webkit-filter: grayscale(100%);
    /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);

}

.animated-content {
    /* width: 100px;
    height: 100px; */
    background-color: #463A22;
    /* position: absolute; */
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInRight 7s forwards;
}

@keyframes slideInRight {
    to {
        opacity: 100;
        transform: translateX(0);
    }
}