.splash{
    position: fixed;
    top: 0;
    left: 0;
    height: 80%;
    width: 100%;
    background: rgb(45,0,0);
	background: radial-gradient(circle, rgba(45,0,0,1) 0%, rgba(130,0,0,1) 100%, rgba(130,0,0,1) 100%);
    font-size: 2em;
    display: flex;
    align-items: center;
    justify-content: center;
    animation-name: open;
    animation-duration: 1s;
    animation-delay: 5s;
    /*animation-fill-mode: forwards;*/    
	animation-fill-mode: forwards;
    z-index: 9999999999999999999999;
}
.splash .img{
    background-image: url("../../assets/images/header_logo_2.png");
    height: 60px;
    width: 200px;
    z-index: 99999999999999999;
}
/*
.splash::after, .splash::before{
    content: "";
    position: absolute;
    background-color: #fff;
    height: 60px;
    width: 200px;
    z-index: 9999999999999999;
    animation-name: open;
    animation-fill-mode: backwards;   
    animation-duration: 2s;
}
.splash::after{
    left: 30vw;
    animation-delay: 200ms;
}
.splash::before{
    left: 0;
    animation-delay: 2s;
}
*/
.splash-fadein{
	color: #fff;
	opacity: 0;
	animation:fadeIn 1s ease-in forwards;
}
@keyframes open{
    0%{
        transform: translate(0, 0);
    }
    100%{
        transform: translate(100%, 0);
    }
}
/*
.content{
    height: 100vh;
    width: 100vw;
    background-color: #181818;
    background-image: url("./bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    outline: 20px solid white;
    outline-offset: -20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.content h1{
    font-size: 64px;
    color: transparent;
    margin: 0;
    padding: 0;
    animation-name: fadeIn;
    animation-duration: 1s;
    animation-delay: 4.2s;
    animation-fill-mode: forwards;
    animation-timing-function: linear;
}
*/
/*
@keyframes fadeIn{
    0%{
        padding-top: 20px;
        color: transparent;
    }
    100%{
        padding-top: 0;
        color: white;
    }
}
*/