/* =========================
   SEITENLAYOUT
   ========================= */

.page-layout {
    position: fixed;
    top: 50px;        /* Header-Höhe */
    right: 0;
    bottom: 50px;     /* Footer-Höhe */
    left: 0;

    display: flex;
    align-items: stretch;

    background: linear-gradient(to bottom, rgb(154, 192, 205), lightgreen);
    overflow-y: hidden;
    padding-bottom: 10px;
}