@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&family=Playfair+Display:wght@400;700&display=swap');
:root{
    --graphite: #333333;
    --chestnut: #852D29;
    --red: #D7271F;
    --red-orange: #E04F1D;
    --orange: #E8761A;
    --orange-yellow: #F09C0F;
    --yellow: #F7C204;
    --white: #FFFFFF;
}


body{
    background-color: var(--yellow);
    color: var(--graphite);
    font-family: 'Montserrat', sans-serif;
    margin-left: 260px !important;

}

h1, h2, h3, h4, h5, h6{
    font-family: 'Playfair Display', serif;
    margin: 0;
}



/* Themed buttons for Quick Actions */
.btn-theme{
    background-color: var(--chestnut);
    color: var(--white);
    border-color: transparent;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}
.btn-theme{
    transition: background-color .15s ease, color .15s ease;
}
.btn-theme:hover{
    background-color: var(--red);
    color: var(--white);
}
.btn-theme-outline{
    background: transparent;
    color: var(--chestnut);
    border: 1px solid var(--chestnut);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.btn-theme-outline:hover{
    background-color: var(--red);
    color: var(--white);
    border-color: var(--red);
    }
    
    /* Increase heading sizes by 5px */
    /* Use calc() to add 5px and !important to beat Bootstrap if it's loaded after this file */
    h1 {
        font-size: calc(2.5rem + 3px) !important;
    }
    
    h1.h3 {
        font-size: calc(1.75rem + 3px) !important;
    }
    
    h6 {
        font-size: calc(1rem + 3px) !important;
    }