.Prop_Icon,
#Prop_Container {
    /* == Windows Setting == */
    /* Icon Position */
    --icon-position-top: 0%;
    --icon-position-left: 0%;

    /* Windows Position */
    --window-position-top: 7%;
    --window-position-left: 25%;

    /* Windows Size */
    --window-size-width: 400px;
    --window-size-height: auto;
    --window-aspect-ratio: 4/1;

    /* Window Background */
    --application-background-color: rgba(0, 0, 0, 0.8);
    --application-background-blur: blur(4px);

    /* == Prop Content Setting == */
    /* Font Family */
    --font-family: "consolas", sans-serif;
    --font-family-special: "Stretch Pro", sans-serif;

    /* Profile Picture Size */
    --pfp-size-small: 64px;
    --pfp-size-normal: 128px;
    --pfp-size-big: 256px;
}


/* Prop Icon */
.Prop_Icon {
    top: var(--icon-position-top);
    left: var(--icon-position-left);
}


/* Prop Windows */
#Prop {
    flex: 1;
    /* Custom Width and Height for the app */
    width: var(--window-size-width);
    /* height: var(--window-size-height); */
    /* aspect-ratio: var(--window-aspect-ratio); */
    color: var(--font-color);

    /* Custom Position for the app on the desktop  */
    position: absolute;
    top: var(--window-position-top);
    left: var(--window-position-left);

    /* This will break the screen limit of the desktop but this will stay here for... idk development purpose :) */
    /* transform: translate(-50%, -50%);  */

    box-shadow: 0px 0px 20px rgb(0, 0, 0, 1);

    /* Custom Header if you want to style it */
    .Prop_header {
        margin: 0;
        padding: 0 5px;

        * {
            display: flex;
            justify-content: center;
            align-items: center;
        }
    }

    /* This is where you're edit your style inside the content */
    .Prop_main {
        padding: 1em;
    }
}