@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

:root{
    /* Fonts */
    --lato: "Roboto", sans-serif;

    
    /* Colors */
    --black: rgba(58, 58, 60, 1);
    --white: rgba(255, 255, 255, 1);
    --green: rgba(59, 175, 41, 1);
    --gray: rgba(141, 141, 141, 1);
    --softgray: rgba(221, 221, 221, 1);
    --softgray2: rgba(197, 197, 197, 1);
    --softgray3: #dee2e6;
}

html, body {
    height: 100%;
    margin: 0;
  }
  
  body {
    display: flex;
    flex-direction: column;
  }

  .grow-container{
    flex: 1;
  }