:root{
    --bg-color: #2f4e2c;
    --text-color: #fff;
    --body-color: #f1e8d9;
    --body-color2: #ebe3d0;
}

*{
    margin: 0;
    padding: 0;
    display: border-box;
    font-family: 'Merriweather', serif;
}

body{
    background: var(--body-color) !important;
}

.btn_custom{
    background: var(--bg-color) !important;
    color: var(--text-color) !important;
}

.btn_custom_secondary{
    background: var(--body-color2) !important;
}

.btn_custom_secondary:hover{
    background: var(--body-color) !important;
}

.bg-custom{
    background: var(--bg-color) !important;
    color: var(--text-color) !important;
}

.big_content{
    min-height: 100vh !important;
}

.content_top{
    padding-top: 25px;
    padding-bottom: 25px;
    background: var(--body-color2) !important;
}

.content{
    background: var(--body-color) !important;
    padding-top: 25px;
    padding-bottom: 25px;
}
.index_img{
    border-radius: 5px;
}

.index_caption{
    color: var(--bg-color) !important;
    font-weight: bold;
    font-size: 2rem;
}

.footer_heading{
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.link{
    margin: 0;
}

.footer_link{
    color: var(--text-color) !important;
    
}

.footer_link:hover{
    padding-left: 5px;
}