:root {
  --header-height: 45px;
  --background-color: #eee;
  --text-color: #222;
  --font-size-mobile: 18px;
  --font-size-desktop: 18px;
  --line-height: 1.6;
  --h1: 24px;
  --h2: 20px;
  --h3: 18px;
  --max-width: 1280px;
  
}

body {
	font-family: 'Inter', 'Open Sans', sans-serif;
	font-size: var(--font-size-mobile);
	line-height: var(--line-height);
	color: var(--text-color);
	background-color: var(--background-color);
	margin: 0;
}

h1 {
	font-size: var(--h1);
	font-weight: 700;
	margin: 0 0 0.2em;
}

h2 {
	font-size: var(--h2);
	color: #333333;
	margin: 1.2em 0 0.3em;    	
}

h3 {
	font-size: var(--h3);
	color: #333333;
	margin: 1em 0 0.4em;    	
}

p {
  margin: 0 0 1em 0;
}

.fa {
  padding: 10px;
  font-size: 26px;
  width: 40px;
  text-align: center;
  text-decoration: none;
  margin: 5px 2px;
}

.fa-facebook {
  background: #3B5998;
  color: white;
}


img {
  max-width: 100%;
  height: auto;
  display: block;
 }

figure {
  margin: 0 0 2em;
}

figcaption {
  margin-top: 0.5em;
  font-size: 0.9em;
  color: #666;
  line-height: 1.4;
}

ul,
ol {
  margin: 0 0 1em 1.2em;
  padding: 0;
}

li {
  margin-bottom: 0.3em;
}

@media only screen and (min-width: 768px) {
	:root {
	  --h1: 28px;
	  --h2: 24px;
	  --h3: 20px;
	  --header-height: 50px;
	}

	body {
	  font-size: var(--font-size-desktop);
	}	
	h1 { margin: 0 0 0.3em }

}

 /* For desktop: */
@media only screen and (min-width: 1024px) {
	:root {
	  --h1: 30px;	
	}
	.fa { font-size: 30px; }


}
