body
{
	background-image: url("../csSIDesigns/four_bright.png");
	width: 100%;
    color: white;
    margin: 0;
    background-color: black;
    background-attachment: fixed;
    background-position: center;
    background-size: 100% 100%;

    animation-name: zooomWall;
    animation-duration: 1s;
    animation-delay: 1s;
    animation-fill-mode: both;
}

@keyframes zooomWall {
    0% {
        background-size: 139% 139%;
    }
}

@-webkit-keyframes zooomWall {
    0% {
        background-size: 139% 139%;
    }
}

@media only screen and (max-width: 1250px) {
    body
    {
        background-attachment: scroll;
        background-size: auto;
        animation: none;
    }
}