html, body, #root, .app, .main-container {
    width: 100%;
    height: 100%;
}

.main-container {
    overflow-y: scroll;
}

.main-container {
    display: flex;
    flex-direction: column;
}

.main-header {
    display: flex;
    flex-direction: row;
    min-height: 80px;
}

.carousel-container {
    height: 100%;
}

.carousel-text-panel {
    max-width: 400px;
}

.main-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: auto;
}

.main-content-container {
    flex-grow: 1;
}

.main-nav {
    flex-grow: 1;
}

.main-nav ul {
    display: flex;
    flex-direction: row;
    height: 100%;
    align-items: center;
    justify-content: space-around;
}

.main-footer-content {
    display: flex;
    justify-content: center;
    padding: 0.5em;
}

.contact-us-message {
    width: 100%;
}

.contact-us-send-button {
    align-self: left;
}

.console-container {
    display: flex;
}

.console-nav {
    margin-top: 2px;
    margin-left: 2px;
    background: linear-gradient(to right, #03436d,#000000);
}

.console-new-request-container {
    display: flex;
    flex-direction: column;
    border-bottom: solid 2px white;
}
    .console-new-request-container button, .console-new-request-container input, .console-new-request-container select {
        margin: 3px;
    }

.console-main {
    flex-grow: 1;
}
    .console-main header {
        display: flex;
    }

.console-main-request-code {
    width: 100%
}

.console-main-response-code {
    background: white;
}

.console-main-response-code, .console-main-response-code textarea     {
    width: 100%
}


.console-main-header-space {
    flex-grow: 1;
}

.console-desktop ul {
    display: flex;
}

.main-footer-content-copyright {
    position: absolute;
    left: 0;
}

.buy-options {
    display: flex;
    flex-wrap: wrap;
}

.card-container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
}

.home-links {
    display: flex;
    justify-content: center;
}

.home-link {
    min-width: 8em;
    text-align: center;
    margin: 1em;
    padding: 1em;
}

.under-construction {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.under-construction img {
    width: 100%;
    height: auto;
}

.documentation-container {
    display: flex;
    flex-direction: row;
}

@media screen and (max-width: 800px) {
    .hide-when-nospace {
        display: none;
    }

    .console-container {
        flex-direction: column;
    }

    .card-container {
        flex-direction: column;
        align-items: center;
    }

    .home-links {
        flex-direction: column;
    }
}
