/* image preloader */

.splash {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #010101;
    z-index: 10000;
}
.splash:after {
    content: " ";
    position: absolute;
    left: 50%;
    top: 48%;
    transform: translate(-50%, -50%);
    width: 190px;
    height: 30px;
    background: url("../images/roland_logo.png") no-repeat center;
    background-size: 70%;
}

