﻿/* html */
html {
    height: 100%;
    width: 100%;
}

/* body */
body {
    padding: 0;
    margin: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
}

    /* Main Container */
    body .container-fluid {
        position: fixed;
        padding: 0;
        margin: 0;
        height: 100%;
        width: 100%;
    }

/*Desktop*/
@media (min-width: 768px) {
    body #loading {
        font-size: 100px;
    }
}

/*Mobile*/
@media (max-width: 767px) {
    body #loading {
        font-size: 75px;
    }
}