/* REBLIM TYPOGRAPHY
----------------------------------------------*/
//rb-typo margins
$rb-typo-main-margin : 4px auto;

//rb-typo colors
$rb-typo-heading-color   : #a8a8a8;
$rb-typo-paragraph-color : #2a2a2a;

//#FFFFFF
//#F8F8F8
//#D3D3D3
//#BDBDBD
//#A8A8A8
//#939393
//#7E7E7E
//#696969
//#545454
//#3F3F3F
//#2A2A2A
//#151515
//#000000

.reblim {
    
    h1, h2, h3,
    h4, h5, h6,
    .rb-h1, .rb-h2, .rb-h3,
    .rb-h4, .rb-h5, .rb-h6 {
        margin: $rb-typo-main-margin;
        color: $rb-typo-heading-color;

        &.rb-upper { text-transform: uppercase; }      
        &.rb-lower { text-transform: lowercase; }
        &.rb-title { text-transform: capitalize; }
        
        &.rb-left { text-align: left }      
        &.rb-right { text-align: right }
        &.rb-center { text-align: center }
    }

    h1 {
        font-size: 3rem;

        &.rb-h1 { font-size: 4.25rem; }
    }

    h2 {
        font-size: 2.5rem;

        &.rb-h2 { font-size: 3.5rem; }
    }

    h3 {
        font-size: 2rem;

        &.rb-h3 { font-size: 2.75rem; }
    }

    h4 {
        font-size: 1.5rem;

        &.rb-h4 { font-size: 2rem; }
    }

    h5 {
        font-size: 1rem;

        &.rb-h5 { font-size: 1.5rem; }
    }

    h6 {
        font-size: 0.5rem;

        &.rb-h6 { font-size: 0.75rem; }
    }
    
    p {
        color: $rb-typo-paragraph-color;
        margin: $rb-typo-main-margin;
    }
}