/*
*{

    box-sizing:border-box;
}
body{
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items:center;
    width:100vh;
    overflow:hidden;
    margin:0;
    min-height:100vh;
}
.home-section{
    background:url('images/bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position:absolute;
    top:-30px;
    left:-30px;
    width:calc(100vw + 60px);
    height:calc(100vh + 60px);
    z-index:-1;
    filter:blur(40px);
    -webkit-filter:blur(40px);
}
*/
.loading-text{
    font-family:-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size:60px;
    color:white;
    position:absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
}