* {
    font-family: "Playfair Display", serif;
    box-sizing: border-box;
}

body {
    background-color: beige;
    background-image: url('images/leaves.webp')
}

.container {
    max-width: 1024px;
    margin: 0 auto;
    border: 1px solid brown;
    background-color: beige;
    box-shadow: 0 8px 8px 5px hsla(0, 0%, 0%, 0.55);
}

main {
    padding: 0 15px;
}

img,
video {
    max-width: 100%;
}

header img {
    width: 1024px;
    height: auto;
}

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

h1 {
    background-color: rgb(165, 110, 42);
}

h1,
h2,
h3 {
    color: darkgreen;
    font-family: '20_dbregular', Arial, Helvetica, sans-serif;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
}

nav {
    background-color: brown;
    margin-top: -5px;
    display: flex;
    justify-content: center;
}

nav a:link,
nav a:visited {
    color: lightgreen;
    text-decoration: none;
    padding: 10px 4px;
    display: inline-block;
}

nav a:hover,
nav a:focus {
    color: green;
}

nav ul {
    margin-top: 0;
    text-align: center;
}

nav ul li {
    display: inline-block;
    text-decoration: none;
    padding-left: 15px;
}

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

ul.faq-list li {
    margin-bottom: 50px;
}

ul.faq-list li p em {
    color: brown;
    font-family: 'Times New Roman', Times, serif
}

.row {
    display: flex;
    justify-content: center;
    border: 2px solid darkgreen;
}

figure {
    background-color: white;
    border: 1px solid darkgreen;
    border-radius: 6px;
    padding: 8px;
    box-shadow: 2px 2px 5px hsla(0, 0%, 0%, 0.65);
    margin: 10px;
}

figure image {
    border-radius: 6px;
}

figcaption {
    text-align: center;
    text-transform: capitalize;
    padding-bottom: 10px;
}

.columns {
    column-count: 3;
    column-gap: 40px;
    column-rule: 4px dotted green;
}

.columns h2 {
    column-span: all;
}

footer p {
    color: beige;
}

img.left {
    float: left;
    margin-right: 15px;
    margin-bottom: 15px;
}

img.right {
    float: right;
    margin-left: 15px;
    margin-bottom: 15px;
}

.clear {
    clear: both;
}

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

img.border {
    border: 4px solid brown;
}

h3,
h4 {
    padding: 10px;
    margin-bottom: 20px;
    border-top: 1px solid brown;
}

.form-group {
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    font-weight: bolder;
}

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

.submit, .reset {
    background-color: black;
    border-color: black;
    color: white;
    border-radius: 15px;
    padding: 3px 15px;
}

.submit {
    margin-right: 15px;
}

@media screen and (max-width: 768px) {
    .container {

        width: 100%;
    }

    .row {
        flex-direction: column;
    }

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

    figure {
        display: flex;
        justify-content: center;
        flex-direction: column;
    }

    figure img {
        margin-bottom: 15px;
    }

    nav {
        flex-direction: column;
    }
}

.banner img
{width:100%;}
 				

form {		
	display: flex;
	flex-direction: column;
	background-color:#BDCFDB;
	width:95%;
	padding:0.5em;
	margin:1.5em auto;
	border:thin solid black;
	border-radius:10px;
    justify-content: center;
    align-items: center;
}
	
.flex-form {
	display: flex;
	margin-bottom:0.3em;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.flex-form label {
  	width: 120px;
    text-align: right;
  	margin-right:1em;
}	
  				
.flex-form input, select, textarea {
  	flex: 1;
    max-width: 500px;
}
  									
.flex-radio  {
  	display: flex;
  	flex-direction: row;
  	justify-content: center;
  	margin-left:1.8em;
  	margin-top:1.2em;
  	margin-bottom:1.2em;
    font-weight: bold;
}
  				
.flex-radio  label {
  	margin-right: 1.8em;
}
            
	 
.flex-buttons  {
	display: flex;
	justify-content: center;
    width: 100%;
    gap: 5px;
}
	 
textarea {
	height: 100px;
}
		
fieldset {	
    display:  flex;
    width: 90%;
	flex-direction: column;
	margin:0.5em;
	padding: 0.3em;
}

legend {
    font-weight: bold;
}
