.layout-container {
    display: flex;
    flex-flow: column;
    min-height: 100vh;
}

.layout-container nav,
.layout-container footer {
    flex-shrink: 0;
}

.layout-container main {
    flex-grow: 1;
    align-content: center;
}

.block {
    box-sizing: border-box;
}

.main-video-block {
    color: var(--theme-color);
    height: 100dvh;
}

.text-block {
    display: flex;
    flex-direction: row;
    padding: 0 100px;
}

.text-block .block-header {
    flex: 2 0;
}

.text-block .block-content {
    flex: 3 0;
    line-height: 1.2em;
}

.text-block .block-content p {
    margin-bottom: 1.2em;
    white-space: pre-wrap;
}

.text-block .block-content button.action {
    margin-top: 80px;
    float: right;
}

footer {
    color: var(--gray-20);
    font-size: var(--font-size-small);

    padding: 50px 100px;
}

.footer-right {
    float: right;
}
