.SplashScreen {
    height: calc(100% - 78px);
}

.SplashScreenOverlay {
    background-color: rgba(33, 33, 33, .5);
    height: 100%;
}

.SplashScreenRow {
    padding-top: calc(22% - 78px);
}

.Mojo {
    font-size: 4.5rem;
    font-weight: bold;
    animation: mojo 1s;
    animation-fill-mode: forwards;
}

.SplashScreenGreeting {
    color: #fff;
    opacity: 0;
    animation: mojo 1s;
    animation-delay: 1200ms;
    animation-fill-mode: forwards;
}

@keyframes mojo {
    0% {
        opacity: 0;
        transform: translateY(10%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes mojo-underline {
    0% {
        width: 0;
    }
    100% {
        width: 95%;
    }
}

.Mojo__1 {
    color: #ffec76;
}

.Mojo__2 {
    color: #fff;
}

.SplashScreenButtonRow {
    margin-top: calc(16% - 78px);
    text-align: center;
}

.SplashScreenButton {
    font-weight: bold;
    width: 15rem;
    height: 3rem;
    padding-top: 0.65rem;
    padding-bottom: 1rem;
}

/*@media (max-width: 992px) {*/
/*    .SplashScreen {*/

/*    }*/
/*    .SplashScreenRow {*/

/*    }*/
/*    .SplashScreenButtonRow {*/
/*        margin-top: 0;*/
/*    }*/
/*}*/

@media (max-width: 768px) {
    .SplashScreen {
        height: 420px;
        margin-bottom: 2rem;
    }
    .Mojo {
        font-size: 3rem;
    }
    .SplashScreenRow {
        padding-top: 2rem;
        text-align: center;
        line-height: 1;
    }
    .SplashScreenButtonRow {
        margin-top: 1rem;
    }
}

@media (max-width: 370px) {
    .SplashScreen {
        height: 460px;
    }
}