
    .body{      
        display:            flex;
        flex-direction:     column;
        justify-content:    center;
        width:              100%;
        color:              #292500;
        font-size:          1rem;
        font-weight:        normal;
    }
    .header{
        display:            flex;
        justify-content:    space-between;
        position:           sticky;
        top:                0;
        width:              100%;
        padding-top:        0.5rem;
        padding-left:       0.5rem;
        z-index:            1000;
    }
    .width--100{
        width:              100%;
    }
    .content{
        display:            flex;
        flex-direction:     column;
        overflow-y:         auto;
        font-size:          1rem;
        width:              100%;
        margin-top:         1rem;
    }
    .content--center{
        justify-content:    center;
    }
    .content-section{
        margin-left:        auto;
        margin-right:       auto;
        width:              100%;
    }
    
    @media (max-width: 1080px){
        .header{
            height:             8rem;
            background-color:   rgba(255,255,255,0.95);
        }
        .content-section{
            margin-top:         2rem;
            width:              100%;
            padding-right:      0.5rem;
            padding-left:       0.5rem;
        }
        .content-section--100{
            width:              100% !important;
        }
    }
    @media (min-width: 1081px){
        .header{
            height:             10rem;
            background-color:   rgba(255,255,255,0.6);
        }
        .content-section{
            display:            flex;
            flex-direction:     row;
            gap:                2rem;
            align-items:        center;
            margin-bottom:      3rem;
        }
        .content-section:not(:first-child){
            margin-top:         3rem;
        }
        .content-section--100{
            max-width:          100% !important;
        }
    }
    .content-section-100{
        display:            flex;
        width:              100%;
        margin-top:         2rem;
    }
