﻿.splash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    background: #191919;
    z-index: 99999;
    color: lightyellow;
    text-align: center;
    line-height: 90vh;
    font-family: helvetica;
    font-weight: bold;
    background-image: url("/assets/img/5C_logo.png");
    background-size: 40em;
    background-repeat: no-repeat;
    background-position: center center;
    animation: shrink 2s infinite alternate;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-in forwards;
}

@keyframes shrink {
    0% {
        background-size: 50em;
    }

    100% {
        background-size: 40em;
    }
}

.splash.display-none {
    position: fixed;
    opacity: 0;
    top: 0;
    left: 0;
    height: 100%;
    min-height: 100vh;
    background: #191919;
    z-index: -9999;
    color: lightyellow;
    text-align: center;
    line-height: 90vh;
    transition: all 1s;
    background-image: url("/assets/img/5C_logo.png");
    background-repeat: no-repeat;
    background-position: center center;
}


.force-hide {
    display: none !important;
}