﻿#app {
    width: 100%;
    height: 100vh;
    position: fixed;
    overflow: hidden;
    margin: 0;
    font-size: 20px;
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    background-position: center center;
    background-size: cover;
    margin-top: 120px;
    margin-bottom: 40px;
}

.message{
    max-width: 40%;
    text-align: center;
}

.masthead-nav, #busy-overlay{
    display: none !important;
}

@media screen and (max-width: 576px) {
    .message {
        max-width: 80%;
        font-size: 0.8em;
    }
}

