body {
   background-image:url(./images/augustine-wong--B84ECpkgnM-unsplash\ copy.jpg); 
}

h1 {
   background-color: #987554;
   background-image: linear-gradient(to bottom right, #C3A995, #6F5E53);
   color: #E5D3B3;
   font-family: 'Playpen Sans', cursive;
   font-size: 34px;
   text-transform: uppercase;
   text-align: center;
   /* top, right, bottom, left */
   padding: 30px 0px 30px 0px;
}


h2 {
   text-align: center;
   background-color: #165b62;
   color: #fed25a;
   font-family: 'Playpen Sans', cursive;
   font-size: 34px;
   /* top, right, bottom, left */
   padding: 30px 0px 30px 30px;
   margin-bottom: 50px;
}

h3 {
   text-align: center;
   color: #fed25a;
   font-family: 'Playpen Sans', cursive;
   font-size: 34px;
   margin-bottom: 50px;
   border-bottom: 3px dashed #AB947E;   
}

p {
   font-size: 20px;
   font-family: Arial, Helvetica, sans-serif;
   line-height: 30px;
   margin-bottom: 30px;

}

li {
   margin-bottom: 20px;
}

footer {
   text-align: center;
}

ul {
   margin-bottom: 60px;
}

ul li {
   list-style-type: circle;
   list-style-position: inside;
}

/****
Use Your Class Attribute
****/
.myclass {
   color: crimson;
}

/****
Use Your Selector Attribute
****/
nav p {
   font-weight: bold;
   display: inline;
}

nav a {
   padding: 10px;
}

nav {
   text-align: center;
   /* top, right, bottom, left */
   padding: 30px 0px 30px 0px;
}

/****
Group Attribrutes
****/
h1,
h2,
h3 {
   font-family: 'Playpen Sans', cursive;
}

/* CENTER ME */
.bodydiv {
   width: 1200px;
   border: 2px dashed #6F5E53;
   background-color: white;
   /* top, right, bottom, left */
   padding: 50px;
   overflow: auto;
   margin: auto; /* This centers the div horizontally */
   margin-top: 70px;
   margin-bottom: 70px;
}

.featurebox {
   width: 30%;
   margin: auto;
   background-color: burlywood;
   margin-bottom: 70px;
   border-radius: 20px;
   box-shadow: 3px 5px #888888;
}

.gallery {
   display: flex;
   align-items: center;
   justify-content: center;

}

.mx-auto {
   background-color: #fff;
   border: 1px solid black;
   margin: 15px;
   padding: 20px;
}

.alignleft {
   float: left;
   margin-right: 30px;
   margin-bottom: 30px;
}

.alignright {
   float: right;
   margin-left: 30px;
   margin-bottom: 30px;
}

.clear {
   clear: both;
}

.flexcontainer {
   display: flex;
}

.imagecontainer {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
}

section {
   width: 65%;
}

.featurebox p {
   padding: 15px;
}

label {
   float: left;
   display: block;
   font-weight: bold;
   text-align: right;
   width: 120px;
   padding-right: 12px;
}
.submitbtn {
   background-color: #987554;
   color: burlywood;
   border-radius: 5px;
   padding-top: 6px;
   padding-bottom: 6px;
   padding-left: 20px;
   padding-right: 20px;
   margin-left: 132px;
}

.submitbtn:hover {
   background-color: #fed25a;
}