.screen {
    display: flex;
    flex-direction: column;
    background-color: bisque;
    position: fixed;
    top: 0;
    left: -100dvw;
    width: 100dvw;
    height: 100dvh;

    &.screen-open {
        left: 0;
    }

    &.modal {
        z-index: 10;
    }
    
    .body {
        padding: 20px;
        flex-grow: 2;
        overflow-y: scroll;
        overflow-x: hidden; /* needed for small screens */

        * {
            word-wrap: break-word;
        }
    }

    footer,
    header {
        display: flex;
        padding:.75rem;
        background-color: burlywood;
        min-height: 50px;
        flex-shrink: 0;
        gap: .4rem;
    }


    header { /* should this also apply for header? */
        display: flex;
        justify-content: space-between;
    }

    .header {
        font-size: 1.5rem;
        font-weight: bold;
    }
}
