html,
body {
   font-size: 16px; /* base font reset */
   margin: 0;
   padding: 0;
    width: 100%;
    height: 100%;
	background: #cdbce0 url(anthy.png) bottom left fixed no-repeat;
}

.container {
  display: grid;
  grid-template-columns: auto minmax(320px, 1200px) auto;
  grid-template-rows: max-content auto max-content;
  min-height: 100vh;
  max-width: 100vw;
  grid-template-areas: 	". header ." 
						". main ." 
						"footer footer footer"
}

header {
    grid-area: header;
	margin: 0 auto;
	padding:0;
	line-height:0;
	}

.resize {
	max-width: 100%;
	height: auto;
}

main {
    grid-area: main;
    margin: 0 auto;
    padding: 0 2rem;
    font-family: "Lunasima", sans-serif;
    text-shadow: -1px -1px 1px #cdbce0, 1px 1px 1px #a796b9;
    color: #535353;
    text-align: justify;
    line-height: 160%;
}

.center {
    text-align: center;
}

a:link,
a:visited,
a:active {
	text-decoration: none;
	color: #469293;
	font-weight: bold;
	text-shadow: 0 0;
    transition: all 0.3s ease-in-out;
	}

a:hover,
a:focus {
	color: #fff;
	text-shadow: 0 0;
    transition: all 0.3s ease-in-out;
	}


h1 {
    font-family: 'Zen Antique Soft', serif;
    text-align: center;
    color: #5d7489;
    font-size: 200%;
    margin: 0 0 2rem 0;
    padding: 0;
    text-shadow: 0 0;
    font-weight: normal;
}

i,
em {
	color: #68517d;
    letter-spacing: 1px;
}

strong, bold {
    color: #6d5d97;
    letter-spacing: 2px;
}

.sep {
	display: block;
	max-width: 300px;
	margin: 3rem auto;
	}
	
.moku {
    font-family: 'Zen Antique Soft', serif;
    text-align: left;
    color: #fff;
    font-size: 115%;
    font-weight: normal;
    letter-spacing: 2px;
    text-shadow: 0px 0px 1px #801cbf, 0px 0px 1px #EC407A, 0px 0px 5px #E91E63, 0px 0px 7px #673AB7;
}

footer {
    grid-area: footer;
    color: #2d2d2d;
    text-align: right;
    font-size: 75%;
    font-family: "Dosis", sans-serif;
	padding: 1.5rem;
}

footer a:link,
footer a:visited,
footer a:active,
footer a:hover,
footer a:focus {
	font-weight: normal;
	}
	
footer i,
footer em {
	color: #2d2d2d;
    letter-spacing: 1px;
}