#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    scale: 1;
    display: flex;
    flex-direction: column;
    align-items:center;
    justify-content:center;
    background-color: #fff;
    z-index: 99999999999999;
    animation-name: blow;
    -o-animation-name: blow;
    -moz-animation-name: blow;
    -webkit-animation-name: blow;
    animation-duration: 4s;
    animation-iteration-count: infinite ;
    animation-timing-function: ease-in-out;
    transition: 0.3s;
} 
#loading img{
    width: 150px;
}
#loading p{
    margin-top: 50px;
    font-size: 30px;
    color: #c50000 !important;
}
@keyframes blow {
    0%{
        scale:1;
    }
    50%{
        scale:1.2;
    }
    100%{
        scale:1;
    }
}