@charset "UTF-8";
html {
  box-sizing: border-box;
}
* {
  box-sizing: inherit;
}
h1 {
  text-align: center;
  text-transform: uppercase;
  color: #000000;
  text-decoration: underlineF;
}
body {
  font-family: Georgia, serif;
  font-size: 100%;
  background-color: rgb(108, 196, 159);
  margin: 0;
}
p {
  font-size: .7rem;
}
b {
  color: #000000;
}

/* GRID LAYOUT */
#container {
  display: grid;
  grid-template-rows: auto auto auto 5em;
  grid-template-columns: 1fr;
  grid-template-areas: 
    "banner"
    "letters"
    "main"
    "footer";
	 
}
header {
  grid-area: banner;
}
main {
  grid-area: main;
}
aside {
  grid-area: hours;
}
footer {
  grid-area: footer;
}
#letters {
grid-area: letters;
}
/* link styles */
a:link, a:visited { color: white; }
a:focus, a:hover, a:active { color: #000000; }

a {
  text-decoration: none;
  border-bottom: 1px dotted;
  padding-bottom: .2em;
}



/* header styles */
header {
  color: white;
  background:  url(images/download.png) no-repeat center center;
  background-size: cover; 
  text-align: center;
  height: 15em;
  padding-top: 50px;
}
header p {
  font-style: italic;
  font-size: 1.2em;
  margin-top: -12px;
}
header h1 {
  margin-top: 1.5em;
}
h2 {
  color: #000000;
}
#notice {
  border-style: double;
  text-align: center;
  margin-top: 2em;
  padding: 2em;
}
/* need to word on that */
.letters h2 {
  text-align: center;
}
/* nav styles */
nav {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  

}
.option:hover {
  transform: scale(1.1);
}
nav, footer {
  font-family: verdana, sans-serif;
  background-color: rgb(6, 138, 83);;
}
nav ul li a:link, nav ul li a:visited {
  color: #e4e4e4;
}
nav ul li a:focus, nav ul li a:hover, nav ul li a:active {
  color: rgb(14, 13, 13);
}
nav ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  justify-content: center;
  
}
nav ul li {
  font-size: .8em;
  text-transform: uppercase;
  letter-spacing: .2em;
}
nav ul li a { 	
  display: block; 	
  border: 1px solid; 	
  border-radius: .5em; 	
  padding: .5em 1em; 	
  margin: .5em; 
} 

/* letters style */
#letters {
  font-family: 'Stint Ultra Expanded', Georgia, serif;
  background-color: rgb(108, 196, 159);
  line-height: 1.8em;
  color: #555;
  padding: 1em;
  border: double 4px #EADDC4;
  border-radius: 25px;
  margin: 2.5%; 
}
#letters ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  align-items: stretch;
  flex-flow: row wrap;
  justify-content: center;
}
#letters ul li {
  font-size: .8em;
  text-transform: uppercase;
  letter-spacing: .2em;
}
#letters ul li a { 	
  display: block; 	
  border: 1px solid; 	
  border-radius: .5em; 	
  padding: .5em 1em; 	
  margin: .5em; 
} 

/* main "products" styles */
main {
  font-family: 'Stint Ultra Expanded', Georgia, serif;
  background-color: rgb(108, 196, 159);
  line-height: 1.8em;
  color: black;
  padding: 1em;
  border: double 4px #EADDC4;
  border-radius: 25px;
  margin: 2.5%; 
}
h3 {
  text-transform: uppercase;
  letter-spacing: .2em;
  color: #7A0002;
  border-top: 1px solid;
  border-left: 3px solid;
  padding-left: 1em;
  margin-top: 2.5em;
}
p.more {
  font-family: verdana, sans-serif;
  text-transform: uppercase; 
  font-size: .8em;
  clear: left;
}
main img {
  float: left;
  margin: 0 1em 1em 0;
}

img[src*="bread"] {
  -webkit-shape-outside: ellipse(130px 95px at 50% 50%);
  shape-outside: ellipse(130px 95px at 50% 50%);
}

img[src*="muffin"] {
  margin-left: 50px;
  -webkit-shape-outside: circle(125px);  
  shape-outside: circle(125px);
  -webkit-shape-outside: polygon(0px 0px, 197px 0px, 241px 31px, 241px 68px, 226px 82px, 219px 131px, 250px 142px, 250px 158px, 0px 158px);
  shape-outside: polygon(0px 0px, 197px 0px, 241px 31px, 241px 68px, 226px 82px, 219px 131px, 250px 142px, 250px 158px, 0px 158px);  
}




/* aside "hours" styles */
aside {
  background: url(images/scallop.png) repeat-y left top;
  background-color: #F6F3ED;
  padding: 1em;
  padding-left: 45px;
  /* border-top-right-radius: 25px; */
  /* margin: 1em 2.5% 0 10%; */
}
/* misc styles */
footer {
  color: #EADDC4;
  text-align: center;
  font-size: .8em;
  padding: 1em;
}
#award { 	
  position: fixed; 	
  top: 30px; 	
  left: 50px;
}
h2 {
  font-family: 'Stint Ultra Expanded', Georgia, serif;
}
#abc {
  text-align: center;
  color: #000000;
}
.day {
  color: #783F27;
  font-family: verdana, sans-serif;
  font-size: .8em;
  text-transform: uppercase;
}
@media screen and (max-width: 944px) {

  nav ul {
    display: flex;
    
  }
  .option {
    display: none;
  }
  .home {
    display: flex !important;
  }
  header {
    padding-top: 20px;
  }
}
