@charset "utf-8";
/*
   sample start file for final project - educational use only
   
   Author:   Mickayla Morrow
   Date:     
   
  

*/

* {
    margin: 0; 
    padding: 0;
}

body {
    font-size: 1.1em;
    font-family: Arial, Helvetica, sans-serif;
	background-color: white;
}


#container {
	position: center;
    width: 930px;
    border-width: 1px;
    margin: 0 auto;
	background-color: white;
}


header {
	display: flex;
	align-items: center;
    position: relative;
	background-color: white;
    border-bottom: 6px solid #88b095;
    font-family: "Playfair Display", serif;
    font-size:18px;
	width: 100%;
    height: 100px;
	top: 0; 
	left: 0;
}


.top-nav {
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 10;
	margin-right: auto;
	margin-left: auto;
}

li {
    display: inline-block;
    margin:20px;
    height: 35px;
    text-transform: uppercase; 
}

a {
    text-decoration: none;
    color: #C6A3F4;
}


nav ul {
    font-weight: bold;
    list-style: none;
}

nav ul li a {
    padding: 5px;
    color: #88b095;
    text-decoration: none;
    display:block;
}

nav ul li a:hover {
    background: #4e3f00;
    border-radius: 10px;
    color: white;
}

#main {
    width: 446px;
    padding: 10px;
	margin: auto;
    color: #88b095;
	font-family: "Playfair Display", serif;    
}


#main p {
    text-indent: 1.5em;
}

p {
	color: white;
}

figure{
    padding-top: 10px;
    text-align: center;
}

figcaption {
    font-style: italic;
}



aside p {
    font-style: italic;
    font-size: 0.9em;
}

h1 {
	background: #fff;
	color: #88b095;
	text-align: center;
}

h2 {
    font-size: 1.4em;
    text-align: center;
    padding-bottom: 0.5em;
	color: #4e3f00;
}

h3 {
    text-align: center;
    padding-bottom: 0.5em;
    padding-top: 0.5em;
}

h4 {
    text-align: center;
    padding-bottom: 0.5em;
    font-size: 2.4em;
	color: #4e3f00;
}

footer {
    width: 910px;
    margin: 0;
    padding: 10px;
    background-color: #88b095;
    clear: both;
    color: white;
    font-weight: bold;
    text-align: center;
	font-family: Lora;
}

#wrapper {
    max-width: 930px;
    margin: 0 auto;
	background-image: linear-gradient(135deg, #88b095 0%, #4e3f00 100%);
}

/* navigation for footer */

footer a:link {
    color: white;
    text-decoration: none;
	font-family: Lora;
}

footer a:visited {
    color: #4e3f00;
    background-color: #88b095;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.features {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	padding: 40px 20px;
}
.features article {
	background: #88b095;
	border-radius: 12px;
	padding: 24px;
	box-shadow: 0 1px 0 rgba(15, 23, 42, .06);
	border: 1px solid #e2e8f0;
}

.hero {
  background:url("images/Flowers.jpg") center/cover no-repeat;
  padding:120px 24px;
  color:#fff;
}


/* plant gallery */
div.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

div.gallery-item {
  margin: 5px;
  border: 1px solid #ccc;
  width: 180px;
}

div.gallery-item:hover {
  border: 1px solid #777;
}

div.gallery-item img {
  width: 100%;
  height: auto;
}

div.gallery-item div.desc {
  padding: 15px;
  text-align: center;
}

/*video */


/* pottery images and prices */
.card {
	flex-direction: column;
	align-items: center;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
	max-width: 300px;
	margin: auto;
	text-align: center;
	font-family: "Playfair Display", serif;
}

.price {
	color: white;
	font-size: 22px;
	text-align: center;
}


