.loading-page {
    position: fixed;
    z-index: 5000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100vw;
    height: 100%;
    background-color: #F8F8F8;
}

.loading-page h1 {
    margin: 0;
    font-size: 2.5em;
    font-weight: bold;
    font-family: serif;
    color: #333;
    letter-spacing: 2px;
}

.loading-page .squirrel-loading-img{
    width: 200px;
    padding-bottom: 10px;
}

