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;
   margin-left: 30px;
   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 {
   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: 1000px;
   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: 600px;
   margin: auto;
   background-color: white;
   padding: 50px;
   margin-bottom: 70px;
   border-radius: 20px;
   box-shadow: 5px 10px #888888;
}

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

}

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