.Contact_Icon,
#Contact_Container {
    /* == Windows Setting == */
    /* Icon Position */
    --icon-position-top: 55%;
    --icon-position-left: 1%;

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

    /* Windows Size */
    --window-size-width: 550px;
    --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);

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

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

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

/* Windows */
#Contact {
    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-top);

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

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

    /* Custom Header if you want to style it */

    .Contact_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 */

    .Contact_main {
        height: 100%;
        padding: 1em 0.5em 0.5em 0.5em;
        /*background-image: linear-gradient(var(--border-color), darkblue);*/

        p {
            margin: 0;
        }

        [class^="wrapper"] {
            margin-bottom: 24px;
        }

        .wrapperHeader {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;

            text-align: center;

            margin-bottom: 16px;

            .pfp {
                border-radius: 100%;
                aspect-ratio: 1;
                width: var(--pfp-size-small);
                margin-bottom: 16px;
            }
        }

        .wrapperIcon {
            display: flex;
            justify-content: center;
            overflow: hidden;

            a {
                display: flex;
                justify-content: center;
                align-items: center;

                gap: 12px;

                padding: 0.2em;

                transition: background-color 0.1s ease;

                img {
                    aspect-ratio: 1/1;
                    height: 28px;
                }

                &:hover {

                    background-color: rgb(20, 100, 225, 0.7);
                }
            }

        }

        .wrapperLinks {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
            gap: 16px;

            text-align: center;

            .button {
                display: flex;
                align-items: center;
                justify-content: center;

                width: 75%;
                height: 45px;
                padding: 0.5em;

                cursor: pointer;
                user-select: none;

                background-color: var(--border-color);
                transition: background-color 0.2s ease 0s;

                &:hover {
                    border: 4px solid var(--border-color);
                    background-color: rgba(0, 0, 0, 0.5);
                }
            }
        }

    }
}