@media screen {

    html, body {
        min-height: 100%;
    }

    body {
        margin: 0;
        font-size: 18px;
        font-family: 'PT Sans', Verdana, sans-serif;
        background: #ffffff;
        line-height: 1.4;
    }

    /*** layout ***/

    .flex-wrapper {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: flexbox;
        display: -moz-flex;
        display: -o-flex;
        display: -webkit-flex;
        display: -ms-flex;
        display: flex;
        -moz-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        -o-flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    #page-wrap {
        position: relative;
    }

    /*** canvas ***/

    /* our canvas will be a bit taller than our window to avoid "glitched" top and bottom edges */
    #canvas {
        position: fixed;
        top: -10vh;
        right: 0;
        left: 0;
        height: 120vh;
        z-index: 10;
    }

    #back-to-lib-link {
        display: inline-block;
        position: fixed;
        top: 0;
        right: 0;
        padding: 0.25em 0.5em;
        background: #ee6557;
        color: white;
        text-decoration: none;
        z-index: 20;
        font-size: 0.85em;
    }

    #back-to-lib-link:hover {
        background: black;
    }

    #source-code-link {
        display: inline-block;
        position: fixed;
        bottom: 1em;
        right: 1em;
        padding: 0.25em 0.5em;
        background: #ee6557;
        color: white;
        text-decoration: none;
        z-index: 50;
    }

    #source-code-link:hover {
        background: black;
    }

    /*** content ***/

    #content {
        position: relative;
        z-index: 15;
        max-width: 1440px;
        margin: 0 auto;
        padding: 40px 0 0 0;
    }

    #debug {
        position: fixed;
        bottom: 0;
        right: 0;
        background: white;
        font-size: 0.9em;
        padding: 0.25em 0.5em;
        z-index: 10;
    }

    #planes {
        overflow: hidden;
    }

    .plane-wrapper {
        position: relative;

        width: 75%;
        height: 60vh;
        margin: 10vh 25% 10vh 0;
    }

    .plane-wrapper:nth-child(even) {
        margin: 10vh 0 10vh 25%;
    }

    .plane-wrapper:first-child {
        margin-top: 5vh;
    }

    .plane-wrapper:last-child {
        margin-bottom: 20vh;
    }

    .plane-title {
        color: white;
        position: absolute;
        top: 25%;
        left: 25%;
        font-size: 2em;
        font-weight: 700;
        background: #ee6557;
        display: inline-block;
        padding: 0.125em 0.25em;
    }

    .plane {
        position: absolute;
        top: 0;
        right: 15%;
        bottom: 17.5vh;
        left: 0;
    }

    .plane-wrapper:nth-child(even) .plane {
        right: 0;
        left: 15%;
    }

    .small-plane {
        position: absolute;
        right: 0;
        bottom: 0;

        width: 45%;
        height: 45vh;
    }

    .plane-wrapper:nth-child(even) .small-plane {
        right: auto;
        left: 0;
    }

    .plane img, .small-plane img {
        display: none;
    }


    /*** handling errors ***/

    .no-curtains .plane-title {
        z-index: 1;
    }

    .no-curtains .plane, .no-curtains .small-plane {
        display: flex;
        overflow: hidden;
    }

    .no-curtains .plane img, .no-curtains .small-plane img {
        display: block;
        min-width: 100%;
        min-height: 100%;
        object-fit: cover;
    }

}




@media screen and (max-width: 1320px) {

    #content {
        margin: 0 20px;
    }

    .plane-wrapper {
        width: 87.5%;
        height: 60vh;
        margin: 10vh 12.5% 10vh 0;
    }

    .plane-wrapper:nth-child(even) {
        margin: 10vh 0 10vh 12.5%;
    }

    .plane-wrapper:last-child {
        margin-bottom: 20vh;
    }

}


@media screen and (max-width: 720px) {

    #content {
        margin: 0 10px;
    }

    .plane-wrapper {
        height: 75vh;
        margin: 7.5vh auto;
    }

    .plane-wrapper:nth-child(even) {
        margin: 7.5vh auto;
    }

    .plane-wrapper:last-child {
        margin-bottom: 12.5vh;
    }

}
