﻿.wall {
    background-color: #A8A29E;
}

.Awall {
    animation-name: wallAnimation;
    animation-duration: 0.3s;
    animation-timing-function: ease-out;
    animation-delay: 0;
    animation-direction: alternate;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-play-state: running;
}

@keyframes wallAnimation {
    0% {
        transform: scale(.3);
        background-color: #FAFAF9;
    }

    50% {
        transform: scale(1.5);
        background-color: #E7E5E4;
    }

    100% {
        transform: scale(1.0);
        background-color: #A8A29E;
    }
}
