html,
body {
   font-size: 16px; /* base font reset */
   margin:0;
   padding:0;
   height:100%;
   background: #fff;
}

h1 {
    display: inline-block;
    font-family: 'impact_label_reversedregular', sans-serif;
    font-size: 250%;
    font-weight: normal;
    padding: 0;
    margin: 0;
    color: black;
}

.indexmain {
width: 100%;
text-align: center;
margin: 0rem auto 1rem auto;
font-family: 'Libre Baskerville', serif;
font-size: 120%;
color: gray;
}

.indexfooter {
width: 60%;
text-align: center;
margin: 4rem auto 2rem auto;
font-family: 'Libre Baskerville', serif;
font-size: 60%;
letter-spacing: 0.1rem;
color: silver;
line-height: 200%;
}

a:link,
a:visited,
a:active {text-decoration: none;
color: pink;}
a:hover {color: lightcoral; border-bottom: 1px solid #000;}

.flowers {width: auto;
padding: 0.125rem;
border: 0;}

.flowermenu a:hover {border-bottom: 0;}


.grid-container {
      width: 65%;
      margin-left: auto;
      margin-right: auto;
  display: grid;
  grid-template-columns: auto 75%;
  grid-template-rows: max-content auto max-content;
  grid-template-areas:
    "header header"
    "sidebar main"
    "footer footer";
}
header { grid-area: header; text-align: left; padding-left: 2rem; padding-top:3rem;}

main { grid-area: main; font-family: 'Libre Baskerville', serif;
font-size: 100%;
color: gray;
line-height: 175%;
text-align: justify;
padding-left: 2rem;
border-left: 3px dashed #eee;}

nav { grid-area: sidebar;  text-align: center; font-family: 'Libre Baskerville', serif;
font-size: 120%;
color: gray;
padding: 0;}


footer { grid-area: footer; width: 80%;
text-align: center;
margin: 4rem auto 2rem auto;
font-family: 'Libre Baskerville', serif;
font-size: 60%;
letter-spacing: 0.1rem;
color: silver;
line-height: 200%;}

.miniflowers {max-width: 50px;
height: auto;
margin: 1rem;}
