@charset "utf-8";
/* CSS Document */


*,
*::after,
*::before{
	box-sizing: border-box;
	}

::selection {
  background-color: black;
  color:white;
  }


  :root {
    --grey: hsl(0, 0%, 74%);
    --darkgrey: hsl(0, 0%, 30%);
    --blue:  hsl(195, 53%, 79%);
    --teal: hsl(180, 21%, 37%);
  }


button,
input,
textarea,
select {
font: inherit;
background:  white;
margin:  2%;
padding: 16px;
}



*,
*::after,
*::before{
	box-sizing: border-box;
	}

::selection {
  background-color: black;
  color:white;
  }


  :root {
    --grey: hsl(0, 0%, 74%);
    --darkgrey: hsl(0, 0%, 30%);
    --blue:  hsl(195, 53%, 79%);
    --teal: hsl(180, 21%, 37%);
  }


button,
input,
textarea,
select {
font: inherit;
background:  white;
margin:  2%;
padding: 16px;
}

html,
body {
  padding: 0;
  margin: 0;
  scroll-behavior: smooth;
   background: transparent url(graph-2-12X.png)repeat ;
}

body {
  font-family: 'Raleway', sans-serif;
  position: relative;
  font-weight: normal;
  -webkit-text-size-adjust: none;
  overflow-x: hidden;
  overflow-y: scroll;
  border-top:12px solid black;
  text-align: center;}

body * { text-shadow: none;}

@media all and (min-width : 1600px)
{
  body { width: 100%; margin: 0;  }
}


/* width */
::-webkit-scrollbar {
  width: 14px;
}


/* Handle */
::-webkit-scrollbar-thumb {
  background: #454545;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: lightblue;
}


/*==================== Typography ============= */
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1;
}

h1 {
  font-size: 1.8em;
  padding: 0px 5%;
  line-height: 1.2em;
  font-weight: 300;
  letter-spacing: -0.08rem;
}


h2 {
  font-size: 1.23em;
  color: var(--darkgrey);
  padding:0 5%;
  font-weight: normal;
  line-height: 1.6em;
  letter-spacing: .023em;

 }


h3 {
  font-size: 1.1em;
  line-height: 1.8em;
  padding: 0 5%;
  font-weight: 400;
  color: black;
  letter-spacing: .05rem;
  max-width: 65rem;
}

h4 {
  font-size: .9em;
  padding: 05%;
  color: #555 !important;
  font-weight: 100;
}

h5 {
  font-size: .8em !important;
  padding: 0px 12% ;
  font-style: italic;
  color: var(--teal);
  letter-spacing: .1em;
   line-height: 1.6em !important;
  border-left: 23px solid teal;
    }

@media all and (max-width : 768px) {
  h5 {
    font-size: 1.8em;
    padding: 0px 4.2% 0px 4.2%;
    color: var(--teal);
    font-weight: 100;
    line-height: 1.8em;
  }
}

h6 {
  font-size: 0.8em;
  color: black;
  margin:0;
  padding: 0 6%;
  letter-spacing: .2em;
  font-weight: 600;
}

p {
  font-size: 1.08em;
  margin: 0;
  padding: 0 5%;
  font-weight: 100;
  color: var(--darkgrey);
  letter-spacing: 0.05rem;
  max-width: 80rem;
  line-height: 1.9em;
}



/* ====================== LINKS ========== */


a,
a:link,
a:active,
a:visited {
  color: var(--darkgrey);
  border-bottom: 1px dashed;
  text-decoration: none;
  padding:  4px !important;
  outline: none;
  }

a:hover {
 background: transparent;
 margin: 0px;
   transition: 1s;
 border-bottom: 3px solid #555 !important;

}

a:active {
  color: black !important;
  border-bottom: solid 6px black !important;}


