html, body, .logo-container{
    height:100%;
}



body{
    display: flex;
    align-items:center;
    justify-content: center;
    background-color:white;
    animation: none;
    -webkit-animation: none;
    -webkit-animation: changeToBlack 1s linear 6s both;
    animation: changeToBlack 1s linear 6s both;
}

.logo-container{
    display:flex;
    align-items:center;
    justify-content: center;
    flex-direction: column;
}

#splash-logo{
    width: 600px;
    height:600px;
    -webkit-animation: fade-out 1s linear 6s both;
    animation: fade-out 1s linear 6s both;
}

#redirect-msg{
    -webkit-animation: fade-in 2s linear 8s both;
    animation: fade-in 2s linear 8s both;
}

