:root {
    /* Add these styles to your global stylesheet, which is used across all site pages. You only need to do this once. All elements in the library derive their variables and base styles from this central sheet, simplifying site-wide edits. For instance, if you want to modify how your h2's appear across the site, you just update it once in the global styles, and the changes apply everywhere. */

    --light1: #86F786;
    --light2: #6DE5F7;
    --theme: #f78a78;
    --dark1: #65AB65;
    --dark2: #439DAB;
    --black: #000;
    --white: #fff;

    --green-background: rgb(101, 171, 101, .1);



    /* dark1= rgb(101, 171, 101) 
  dark2= rgb(67, 157, 171) 
  light2= rgb(109, 229, 247)
  light1= rgb(134, 247, 134)
  */

    --primary: #65AB65;
    --primaryLight: #86F786;
    --secondary: #439DAB;
    --secondaryLight: #6DE5F7;
    --headerColor: #1a1a1a;
    --bodyTextColor: #4e4b66;
    --bodyTextColorWhite: #fafbfc;
    /* 13px - 16px */
    --topperFontSize: clamp(0.8125rem, 1.6vw, 1rem);
    /* 31px - 49px */
    --headerFontSize: clamp(1.9375rem, 3.9vw, 3.0625rem);
    --bodyFontSize: 1rem;
    /* 60px - 100px top and bottom */
    --sectionPadding: clamp(3.75rem, 7.82vw, 6.25rem) 1rem;
}


  body {
    background-image: linear-gradient(135deg, var(--black), var(--dark1), var(--theme));
    font-family: Inconsolata;
    background-attachment: fixed;

  }



.cs-topper {
    font-size: var(--topperFontSize);
    line-height: 1.2em;
    text-transform: uppercase;
    text-align: inherit;
    letter-spacing: .1em;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
    display: block;
}

.cs-title {
    font-size: var(--headerFontSize);
    font-weight: 900;
    line-height: 1.2em;
    text-align: inherit;
    max-width: 43.75rem;
    margin: 0 0 1rem 0;
    color: var(--headerColor);
    position: relative;
}

.cs-text {
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    text-align: inherit;
    width: 100%;
    max-width: 40.625rem;
    margin: 0;
    color: var(--bodyTextColor);
}