html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
}

body {
    /* background: white; */
    background: white url('../images/graph-gradient-outline.svg') repeat-x top center;
    background-size: 21px auto;
    color: black;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    line-height: 1.5;
    font-weight: 400;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

.has-border-radius {
  border-radius: var(--border-radius);
}

h1,
h2 {
  font-size: 60px;
  margin: 0;
  line-height: 1.2;
  margin: 0 0 25px 0;
  font-weight: 800;
}

h2 {
  font-size: 45px;
  font-weight: 800;
}

h3,h4,h5,h6 {
  font-size: 30px;
  font-weight: 800;
  margin: 0 0 25px 0;
}

p {
  margin: 0 0 25px 0;
}

main a {
  color: var(--green);
  font-weight: 700;
  text-decoration: underline;
}

main a:hover {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.is-underlined {
  position: relative;
  background: url('../images/underline.svg') no-repeat;
  background-size: 100% auto;
  background-position: left bottom;
}

.is-underlined.is-underlined-long {
  background: url('../images/underline-long.svg') no-repeat;
  background-size: 100% auto;
  background-position: left bottom;
}