
.splash {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0A1632;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999999;
    transform: all 2s;
}

.splash h4 {
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    font-family: sans-serif;
    text-shadow: -1px -1px 2px #fff,
        2px 2px 4px #fff;
    letter-spacing: 2px;
    font-size: 1.5rem;
    position: relative;
    top: -5rem;
}

.splash img {
    width: 120px;
    object-fit: cover;
}