@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  font-family: 'barlow', Verdana, Tahoma, Arial, sans-serif;
  color: rgb(49, 54, 52);
  box-sizing: border-box;
}

.container {
  max-width: 1024px;
  display: block; 
  margin: 15px auto;
  border: 2px solid black;
}

/*FONTS*/
.barlow-thin {
  font-family: 'Barlow', sans-serif;
  font-weight: 100;
  font-style: normal;
}

.barlow-extralight {
  font-family: 'Barlow', sans-serif;
  font-weight: 200;
  font-style: normal;
}

.barlow-light {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-style: normal;
}

.barlow-regular {
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  font-style: normal;
}

.barlow-medium {
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  font-style: normal;
}

.barlow-semibold {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-style: normal;
}

.barlow-bold {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-style: normal;
}

.barlow-extrabold {
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-style: normal;
}

.barlow-black {
  font-family: 'Barlow', sans-serif;
  font-weight: 900;
  font-style: normal;
}

.barlow-thin-italic {
  font-family: 'Barlow', sans-serif;
  font-weight: 100;
  font-style: italic;
}

.barlow-extralight-italic {
  font-family: 'Barlow', sans-serif;
  font-weight: 200;
  font-style: italic;
}

.barlow-light-italic {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-style: italic;
}

.barlow-regular-italic {
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  font-style: italic;
}

.barlow-medium-italic {
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  font-style: italic;
}

.barlow-semibold-italic {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-style: italic;
}

.barlow-bold-italic {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-style: italic;
}

.barlow-extrabold-italic {
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-style: italic;
}

.barlow-black-italic {
  font-family: 'Barlow', sans-serif;
  font-weight: 900;
  font-style: italic;
}

/*END OF FONTS*/

body {
  background-color: rgb(136, 181, 162);
  margin: 0px;
  padding: 0px;
}
main {
  padding: 10px;
}

main img {
  max-width: 200px;
  width: 100%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border: 2px solid black;
}

header img {
  max-width: 1024px;
  width: 100%;
  height: auto;
}

a:link,
a:visited {
  color: rgb(110, 28, 121);
  text-decoration: none;
}

a:hover,
a:focus {
  color: brown;
  cursor: pointer;
}

nav {
  background-color: hsl(86, 59%, 41%);
  padding: 5px;
  margin-top: -2px;
}

nav ul {
  padding: 0%;
  margin: 0%;
}

nav ul li {
  display: inline-block;
  margin-right: 10px;

}

nav a:link {
  color: lightgreen;
  text-decoration: none;

}

nav a:hover,
nav a:focus {
  color: #006400;
  cursor: pointer;
}

.faq-list {
  list-style-image: url('../../images/leaf-1-24.png');
}

p {
  font-size: 18px;
  line-height: 1.5;
  margin-left: 10px;
  margin-right: 10px;
}

h1 {
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  letter-spacing: normal;
  color: hsl(78, 94%, 43%);
  background-color: hsl(348, 8%, 35%);
}

h1,
h2,
h3 {
  font-family: 'Barlow', Verdana, Tahoma, Arial, sans-serif;
  font-weight: 900;
}

h3, h4 {
  border-top: 2px solid black;
  padding-top: 5px;
} 

.intro:first-letter {
  font-size: 24px;
  font-weight: 700;
  color: brown;
}

.columns {
  column-count: 3;
  column-gap: 15px;
  column-rule: 1px solid #9e2b2b;
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 20px;
}

/*Decendent Selector for class columns*/
.columns h2 {
  column-span: all;
}

footer {
  background-color: hsl(86, 59%, 41%);
  color: lightgreen;
  padding: 10px;
  margin-top: 20px;
} 
footer img {
  max-width: 88px;
  width: 100%;
  height: auto;
  float: right;
}
img.right {
  float: right;
  margin-left: 15px;
  border: 2px solid black;
}
img.left {
  float: left;
  margin-right: 15px;
  border: 2px solid black;
}

.left.list-spacer {
  margin-right: 30px;
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}
