@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,500;1,500&family=Roboto:ital,wght@0,400;0,500;1,400;1,500&display=swap');

:root {
  --main-color: rgba(13, 109, 43, 1);
  --main-text-color: rgba(0, 33, 13, 1);
  --accent-color1: rgba(203, 228, 209, 1);
  --accent-color2: rgba(255, 222, 169, 1);
  --accent-color3: rgba(204, 229, 255, 1);
  --back-color1: rgba(249, 250, 245, 1);
  --back-color2:  rgba(255, 255, 255, 1);
  --back-color3: rgba(222, 229, 217, 1);
  --header-font:'Lora', serif;
  --p-font: 'Roboto', sans-serif;
}


/* CSS RESET */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
  box-sizing: border-box;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}


body {
  display: flex;
  flex-flow: column;

  font-family: var(--p-font);
  color: var(--main-text-color);
  background-color: var(--back-color1);
}

h1, h2, h3, h4 {
  font-family: var(--header-font);
  font-weight: 400;
  color: var(--main-text-color);
}

h1 {

  font-size: 22px;
  font-weight: 400;
}

h2 {
  font-size: 24px;
  padding: 8px 0px;
}

h3 {
  font-size: 22px;
}

a {
  font: inherit;
  color: inherit;
  text-decoration: none;
  font-weight: 500;
}

button {
  background-color: var(--main-color);
  color: var(--back-color2);
  border-radius: 5px;
  padding: 10px 24px;
  border: none;
}

input {
  border: none;
}
