.body-container {
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    & > .main-container {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        width: 100%;

        & > painted-outline {
            margin-right: 1rem;
            position: sticky;
            top: var(--header-height);
        }

        & > main {
            width: 60%;
            color: var(--deep-green);
            margin-bottom: 50vh;
            background-color: var(--pale-green);
            border-radius: 2rem;
            padding: 0 2rem 1rem 2rem;

            @media screen and (max-width: 1100px) {
                width: 90%;
                margin-top: 1rem;
                margin-left: 2rem;
                margin-right: 0;
            }
        }

        & > painted-sidebar {
            margin-left: 1rem;
            position: sticky;
            top: var(--header-height);

            @media screen and (max-width: 1100px) {
                margin-top: 1rem;
                margin-left: 0;
                margin-right: 2rem;
            }
        }
    }
}
