.app-body {
    /* DISPLAY */
    display: flex;
    align-items: center;
    flex-direction: column;

    .body-container {
        /* DISPLAY */
        width: 100%;
        display: flex;

        /* STYLING */
        padding: 0 350px;

        &.separator {
            /* STYLING */
            padding: 0;
            color: var(--background-900);
        }

        &.hero {
            /* DISPLAY */
            padding-top: 250px;
            align-items: center;
            justify-content: space-between;

            .hero-container {
                /* DISPLAY */
                display: flex;
                align-items: center;
                flex-direction: column;

                &.content {
                    /* DISPLAY */
                    gap: 20px;
                    max-width: 440px;

                    .content-container {
                        /* DISPLAY */
                        width: 100%;
                        display: flex;

                        &.title .container-text {
                            /* STYLING */
                            font-size: 42px;
                            font-weight: bold;
                        }

                        &.description .container-text {
                            /* STYLING */
                            font-size: 16px;
                            line-height: 1.1;
                            font-weight: normal;
                            color: var(--text-100);
                        }

                        &.link {
                            /* DISPLAY */
                            gap: 16px;
                            justify-content: flex-start;

                            .link-container {
                                /* DISPLAY */
                                gap: 6px;
                                display: flex;
                                align-items: center;
                                justify-content: center;

                                /* STYLING */
                                cursor: pointer;
                                font-weight: 500;
                                padding: 10px 16px;
                                border-radius: 6px;
                                color: var(--text-50);
                                text-decoration: none;
                                background-color: var(--primary-500);
                                box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
                                
                                /* EXTRA */
                                transition: var(--transition-global);

                                &:last-child {
                                    /* STYLING */
                                    background-color: var(--secondary-600);
                                }

                                &:hover,
                                &:focus-visible {
                                    /* DISPLAY */
                                    opacity: 0.8;
                                }

                                .container-img {
                                    /* DISPLAY */
                                    width: 16px;
                                    height: 16px;
                                    aspect-ratio: 1/1;
                                }

                                .container-text {
                                    /* STYLING */
                                    font-size: 16px;
                                }
                            }
                        }
                    }
                }

                &.image {
                    /* DISPLAY */

                    .container-img {
                        /* DISPLAY */
                        width: 440px;
                        height: 440px;
                        aspect-ratio: 1/1;
                    }
                }
            }
        }

        &.about {
            /* DISPLAY */
            height: 100vh;

            /* STYLING */
            background-color: var(--background-900);
        }

        &.work {
            /* DISPLAY */
            height: 100vh;
        }
    }
}
