:root {
  --main-bg-color: #1f6e37;
}

/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 5.5rem;
    
    /*========== Colors ==========*/
    /*Color mode HSL(hue, saturation, lightness)*/
    --black-color: #1f6e37;
    --black-color-light: #3cbb63;
    --black-color-lighten: #42e373;
    --white-color: #fff;
    --body-color: hsl(220, 100%, 97%);
    --yellow-color: #cca802;
    
    /*========== Font and typography ==========*/
    /*.5rem = 8px | 1rem = 16px ...*/
    --body-font: "Montserrat", sans-serif;
    --normal-font-size: .938rem;
    
    /*========== Font weight ==========*/
    --font-regular: 400;
    --font-semi-bold: 600;
    
    /*========== z index ==========*/
    --z-tooltip: 10;
    --z-fixed: 100;
    --space-line: 1.7em;
    --padding-content: 30px 20px;
    --max-width-content: 1100px;
    --font-size-tittle: 30px;
}


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    font-family: var(--body-font);
}