﻿:root {
    /* fonts */
    --cf-title-font: 'Bebas Neue', sans-serif;
    --cf-subtitle-font: 'Montserrat', sans-serif;
    --cf-heading-font: 'Bebas Neue', sans-serif;
    --cf-body-font: 'Montserrat', sans-serif;
    /* colors */
    --cf-dark-color: #212121;
    --cf-light-color: #deeefb;
    /*yellow*/
    --cf-highlight-color: #ff993b;
    /*Blue*/
    --cf-primary-color: #87bbd7;
    /*dark green*/
    --cf-background-color: #052027;
    /* text styles */
    --cf-title-color: var(--cf-dark-color);
    --cf-font-size: 1rem;
    --cf-font-weight: 400;
    --cf-line-height: 1.5rem;
}

html,body{
    height:100%;
}




body {
    color: var(--cf-light-color);
    background-color: #010001;
    background-image: url(/images/GRO_BG3.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
}

main{
   flex: 1 0 auto;  
}

footer{
    flex-shrink:0;
}

.title {
    font-family: "ethnocentric", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 2rem;
    line-height: 2rem;
}

.subTitle{
    font-size: 1rem;
    line-height: 2.5rem;
}

nav {
    background-color: rgba(255,255,255,.1);
}


.footerStyle {
    background-color: transparent;
    color: var(--cf-light-color);
}

    .footerStyle a {
        color: var(--cf-light-color);
    }

        .footerStyle a:hover {
            color: var(--cf-highlight-color);
        }


    .footerStyle .bi {
        font-size: 1.5rem;
        padding-inline-start: .5rem;
    }

    .logo{
        width: 70%;
    }
/*/media query*/
@media (min-width: 767.98px) {
    .logo {
        width: 50%;        
    }
   
    .title {
        font-family: "ethnocentric", sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 2.5rem;
        line-height: 2.5rem;
    }

    .subTitle {
        font-size: 1.5rem;
        line-height: 2.5rem;
    }
}


@media (min-width: 992px) {
    .logo {
        width: 100%;
    }

    .title {
        font-family: "ethnocentric", sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 2.5rem;
        line-height: 2.5rem;
    }

    .subTitle {
        font-size: 1.5rem;
        line-height: 2.5rem;
    }
}
