@import url('https://fonts.googleapis.com/css?family=Roboto+Mono:300,500');

/* Disable scrolling for mobile devices */
@media (max-width: 768px) {
    body {
        overflow: hidden; /* This disables scrolling */
        position: fixed; /* Optionally, you can fix the position of the body to prevent movement */
        width: 100%;
    }
}


html, body {
    width: 100%;
    height: 100%;
}

body {
    margin: 0;
    background-image: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/257418/andy-holmes-698828-unsplash.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh;
    min-width: 100vw;
    font-family: "Roboto Mono", "Liberation Mono", Consolas, monospace;
    color: rgba(255,255,255,.87);
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.container,
.container > .row,
.container > .row > div {
    height: 100%;
}

#countUp {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    
    .number {
        font-size: 4rem;
        font-weight: 500;
        
        + .text {
            margin: 0 0 1rem;
        }
    }
    
    .text {
        font-weight: 300;
        text-align: center;
    }
}
