.site-header {
    display: none;
}

.site-footer {
    display: none;
}

.under-construction-page {
    height: 100vh;
    display: flex;
    flex-flow: row wrap;
    align-content: center;
    align-items: center;
    justify-content: center;
}

.under-construction-page__content {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-end;
    align-content: flex-end;
}

@media only screen and (max-width: 991px) {
    .under-construction-page__logo {
        max-width: 150px;
    }

    .under-construction-page__content {
        flex: 1;
    }
}

@media only screen and (max-width: 425px) {
    .under-construction-page__logo {
        max-width: 100%;
        text-align: center;
    }

    .under-construction-page__logo img {
        max-width: 150px;
    }

    .under-construction-page__content {
        text-align: center;
        justify-content: center;
    }
}