    body {
        margin: 0;
        background: #1e0f2b; /* Any background color or image */
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
        overflow: hidden;
    }

    /* The fixed aspect-ratio container */
    #frame {
        position: relative;
        width: 90vw;                     /* scalable */
        max-width: 2160px;               /* never exceeds original size */
        aspect-ratio: 2160 / 3840;       /* preserves the exact ratio */
        background: url("images/editspage/editspage_final.png") no-repeat center center;
        background-size: contain;        /* critical */
    }

    .link {
        position: absolute;
        cursor: pointer;
        /* color: rgba(0,255,0,0.3); */ /* toggle this for debugging */
    }

.home {
    position: absolute;
    left: 3.43%;
    top: 40.63%;
    width: 24.81%;
    height: 6.07%;
    cursor: pointer;

    /* For debugging, uncomment this line to see the box */
    /* background: rgba(0, 255, 0, 0.3); */
}
