html,
body {
   font-size: 16px; /* base font reset */
   margin:0;
   padding:0;
   height:100%;
   background: #fff;
}


.grid-container {
  display: grid;
  max-width: 804px;
  margin: auto auto;
  grid-template-columns: 100%;
  grid-template-rows: max-content auto max-content;
  grid-template-areas:
    "header"
    "main"
    "footer";
}

header { grid-area: header;
text-align: center; }

.resize {
  max-width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
}


main {
    grid-area: main;
    font-family: 'Lora', sans-serif;
    text-align: justify;
    font-size: 100%;
    color: #3b3b3b;
    line-height: 120%;
    padding: 0 2rem 0 0.5rem;
}

footer {
    grid-area: footer;
    text-align: center;
    font-size: 70%;
    letter-spacing: 1px;
    margin: 4rem;
    color: #b0b0b0;
}


a:link, 
a:visited, 
a:active {
    text-decoration: none;
    color: #58279b;
    border-bottom: 1px dashed #cbb4ec;
}

a:hover {
    color: #ffffff;
    border: 0;
    background: #cbb4ec;
}

h1 {
    font-size: 200%;
    text-align: center;
    /* text-transform: uppercase; */
    margin: 5rem 0 0 0;
    letter-spacing: 3px;
    color: #58279b;
    line-height: normal;
	font-weight: normal;
	border-bottom: 1px dashed #cbb4ec;
}
	
	

h2 {
    font-size: 120%;
    text-align: right;
    padding: 0;
    font-style: italic;
    margin: 0 0 2rem 0;
    color: #c4c4c4;
    letter-spacing: 5px;
    font-weight: normal;
}

h3 {
    font-size: 80%;
    text-indent: 3rem;
    font-style: italic;
}

img.thumb {
 margin: 1rem;
}

p.images,
p.images a {
display: block;
width: 90%;
margin-left: auto;
margin-right: auto;
text-align: center;
border: 0;
background: transparent;}

.smaller {font-size: 80%;
border-top: 1px dashed silver;
margin: 4rem 0;
}
