@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');


:root {
  --primary-color: #d24d16;
  --secondary-color: #f49832;
 
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}



body {
  font-family: 'Open Sans', sans-serif;
}

p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0px;
}

h1 {
    color: #fff;
    font-weight: bold;
    font-size: 48px;
    line-height: 1.4em;
    font-family: "Georgia", Sans-serif;
}



h2 {
    font-family: Georgia, serif;
    font-size: 34px;
    font-weight: 600;
    line-height: 1.4em;
}

h3 {
    font-size: 24px;
    font-weight: 500;
    line-height: 33.6px;
    letter-spacing: 0px;
}


h4 {
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
}


h5 {
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    letter-spacing: 0px;
}

h6 {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}


ul {
	padding: 0;
	margin: 0;
}
.button {
  color: var(--primary-color);
  font-size: var(--font-base);
}


