/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/



/* this sets the background color when a user highlights text */
::selection {
  background: #DEFC72;
  color: #2F2F2F;
}

span {
  margin: 0px;
}

/* header styles on multiple screen widths h1, h2, h3, h4, h5, h6*/
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headline); 
  font-weight: 600;
  letter-spacing: -0.01em;
  padding-top: var(--space-xs));
  margin: 0px;
}

h1 {
  font-size: 40px;
/*   line-height: 1; */
}


@media screen and (min-width: 768px) {
  h1 {
    font-size: 48px;
  }
}
@media screen and (min-width: 1280px) {
  h1 {
    font-size: 64px;
  }
}
@media screen and (min-width: 1600px) {
  h1 {
    font-size: 80px;
  }
}

h2 {
  font-size: 32px;
  line-height: 1;
}

@media screen and (min-width: 768px) {
  h2 {
    font-size: 40px;
  }
}
@media screen and (min-width: 1280px) {
  h2 {
    font-size: 48px;
  }
}
@media screen and (min-width: 1600px) {
  h2 {
    font-size: 64px;
  }
}

h3 {
  font-size: 28px;
  line-height: 1;
}

@media screen and (min-width: 768px) {
  h3 {
    font-size: 32px;
  }
}
@media screen and (min-width: 1280px) {
  h3 {
    font-size: 40px;
  }
}
@media screen and (min-width: 1600px) {
  h3 {
    font-size: 48px;
  }
}

h4 {
  font-size: 24px;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  h4 {
    font-size: 28px;
  }
}
@media screen and (min-width: 1280px) {
  h4 {
    font-size: 32px;
  }
}
@media screen and (min-width: 1600px) {
  h4 {
    font-size: 40px;
  }
}

h5 {
  font-size: 21px;
  line-height: 1.1;
  font-family: var(--font-button);
  text-transform: none;
}

h6 {
  font-size: 19px;
  line-height: 1.21;
}

form {
    border: 1px none #FFFFFF;
    padding: 0px;
    background-color: rgba(255, 255, 255, 1.0);
    border-radius: 0px;