@media (min-width: 700px)
/* Desktop */
    {

    #popupWindow {
        visibility: hidden;
        position: fixed;
        transform: translate(-50%, -50%);
        text-align: left;
        top: 50%;
        left: 50%;
        z-index: 999;

        &.show {
            visibility: visible;
        }
    }

    #popupOverlay {
        display: none;
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 998;
        background: rgba(0, 0, 0, 0.5);
    }

    #welcome {
        margin-block: 4rem;

        & p1,
        p {
            margin: 0;
        }
    }

    body {
        display: flex;
    }

    main {
        display: flex;
        flex-wrap: wrap;
        position: relative;
        width: calc(100vw - var(--sidebar-width));
        padding: 1rem;
        padding-bottom: 0;
        align-content: flex-start;
    }

    aside {
        position: sticky;
    }

    #navRibbon {
        display: none;
    }

    #navContainer>ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    #navOverlay {
        display: none;
    }

    .card {
        height: fit-content;
        flex-grow: 1;
        margin-bottom: 1rem;
    }

    #legal {
        flex: 1 1 100%;
        border-bottom: none;
        border-bottom-left-radius: 0;
        border-end-end-radius: 0;
        margin-bottom: 0;
        text-align: center;
    }


}