/*------------------------------------*\
    
    CSS Custom Properties (aka CSS Variables)
 
    Custom properties are entities defined by CSS authors that contain specific values to be reused throughout a document
    Example usage: brand colors, common margins, drop-shadows, border styles, and more!
    
    Visit the CSS Custom Properties guru card for more info: https://app.getguru.com/card/ceE54p4i/CSS-Custom-Properties-AKA-CSS-Variables 

\*------------------------------------*/

/**
 * Global Variables (Optional - Remove anything that's not being used)
 */

:root {
    --section-margins: 60px;
    --zero: 0.00016px;
}

body {
    --admin-bar-height: var(--zero);
}

body.admin-bar {
    --admin-bar-height: 32px;
}

@media (min-width: 768px) {
    :root {
        --section-margins: 60px;
    }
}

@media (min-width: 1200px) {
    :root {
        --section-margins: 120px;
    }
}
