* {
    box-sizing: border-box;
    outline: none;
    margin: 0px;
    padding: 0px;
}

/* body {
    position: relative;
} */


.splashBg {
    position: relative;
    width: 100vw;
    height: 100vh;
    background-image: url(../img/Splash1BG.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

.splashBg img {
    display: block;
    max-width: 500px;
    width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.splashBg .splashLgo img {
    max-width: 500px;
    width: 80%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation-name: splashImg;
    /* animation-duration: 0.5s; */
    /* animation-delay: -1s; */
}

@keyframes splashImg {
    0% {
        top: 45%;
        opacity: 0;
    }

    80% {
        top: 45%;
        opacity: 0;
    }

    100% {
        top: 50%;
        opacity: 1;
    }
}