body {
    main {
        article {
            div.camera-container{ 
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                div.video-container{
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    position: relative;
                    width: 100%;
                    aspect-ratio: 1/1;
                    background-color: #000;
                    border-radius: 12px;
                    overflow: hidden;
                    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
                    span{
                        color: white;
                        position: absolute;
                        top: 0;
                        left: 0;
                        width: 100%;
                        height: 100%;
                        pointer-events: none; /* Allows interactions to pass through to video if needed */
                        display: flex;
                        flex-direction: column;
                        align-items: center;
                        justify-content: center;
                        div {
                            width: 90%;
                            height: 55.55%;
                            border: 0.2rem solid #c0c0c080;
                        }
                    }
                }
            }
            section {
                &.nutrition_facts {
                    border: 1px solid black;
                    padding: 0.25rem;
                    width: fit-content;
                    h1,h2,p {
                        margin: 0;
                    }
                    span{
                        display: flex;
                        justify-content: space-between;
                        &.sub_nutriment{
                            margin-left: 1rem;
                        }
                        &.sub_sub_nutriment {
                            margin-left: 2rem;
                        }
                    }
                    hr {
                        border: none;
                        height: 2px;
                        background-color: var(--foreground);
                        &.thin {
                            height: 1px;
                        }
                        &.thick {
                            height: 8px;
                        }
                    }
                }
            }
        }
        margin-bottom: 3rem;
    }
}
