@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;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.gallery {
  box-sizing: border-box;
  justify-content: center;
  flex: 1 1 calc(33.333% - 10px);
}

figure {
  background-color: rgb(146, 144, 144);
  border: 1px solid black;
  border-radius: 10px;
  box-shadow: 3px 3px 5px black;
  padding: 10px;
  margin-left: 10px;
  margin-right: 10px;
}

figcaption {
  text-align: center;
  font-weight: 600;
  margin-top: 8px;
}

figure img {
  width: 100%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.column img {
  width: 188px;
  height: auto;
}

.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;
}

@media screen and (min-width:767px) {
  header img {
    max-width: 1024px;
    width: 100%;
    height: auto;
  }

  footer {
    background-color: hsl(86, 59%, 41%);
    color: lightgreen;
    padding: 10px;
    margin-top: 20px;
  }

}

.form-container {
  box-sizing: border-box;
  border-radius: 10px;
  max-width: 800px;
  margin: 15px auto;
  padding: 15px;
  background-color: #6da276;
  border: 2px solid #080707;

}

.form-container h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 400;
  text-align: center;
  color: #080707;
  border-bottom: 1px dotted #080707;

}

.form-container p.intro {
  margin-top: 10px;
  text-align: center;
  font-size: 18px;
  color: #080707;
}

.form-group {
  align-content: left;
  margin-top: 15px;
  margin-bottom: 15px;
}

.btn {
  background-color: #080707;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.btn-submit {
  margin-right: 15px;
}

.button-group {
  display: flex;
  justify-content: center;
}

textarea {
  width: 100%;
  height: 150px;
  padding: 10px;
  border: 2px solid #ccc;
  border-radius: 5px;
  resize: vertical;
  font-size: 12px;
}

table {
  border: 2px solid black;
  border-collapse: collapse;
  width: 60%;
  margin: 10px;
  text-align: center;
}

thead {
  border: 2px solid black;
  background: #05730f;
  color: #ceea9c;
}

tbody {
  border: 2px solid black;
  color: black;
}

tbody tr {
  border: 2px solid black;
  padding: 1px;
  display: flex;
  justify-content: center;
}

tbody th {
  border: 2px solid black;
  background: #05730f;
  color: #ceea9c;
  padding: 5px;
}

tbody td {
  border: 2px solid black;
  color: blue;
  padding: 5px;
  text-align: left;
}

/* adopt page CSS after this comment */

form {
  display: flex;
  flex-direction: column;
  background-color: #BDCFDB;
  ;
  width: 90%;
  padding: 0.5em;
  margin: 1.5em auto;
  border: thin solid black;
  border-radius: 10px;
}


.flex-form {
  display: flex;
  justify-content: end;
  margin-top: 0.3em;
  margin-bottom: 0.3em;
}



.flex-form label {

  text-align: right;
  flex: 1;
  margin-top: 0.5em;
  margin-right: 0.5em;
}

.flex-form input,
select,
textarea {
  flex: 3;
}


.flex-radio {
  display: flex;

  flex-direction: row;
  justify-content: center;
  margin-left: 1.8em;
  margin-top: 1.2em;
  margin-bottom: 1.2em;
}



.flex-radio label {
  margin-right: 1.8em;
}

.flex-buttons {
  display: flex;
  justify-content: center;
}



.fle textarea {
  height: 100px;
  width: 300px;
} 

fieldset {
  display: flex;
  flex-direction: column;
  margin: 0.5em;
  padding: 0.5em;
}

section {
  padding: 0.5em;
}