body {
	margin: 0 0 24px 0;
	text-align: left;
	/* line-height: 0.8; */
	font-family: 'Noto Serif', serif;
	font-size: 18px;
}

.layout {
    width: 100%;
    display: grid;
    grid:
    "header" auto
    "main" 1fr
    "footer" auto
    / 1150px;
    grid-auto-flow: column dense;
    justify-content: space-around;
    align-content: start;
}

.header {
    grid-area: header;
    padding: 0 15px 0 15px;
    border-bottom: 4px solid #000000;
}

.header h1 a:link, .header h1 a:visited, .header h1 a:hover {
    color: #000000;
    text-decoration: none;
}

.flex-container-header a:link, .flex-container-header a:visited, .flex-container-header a:hover {
    color: #434343;
    text-decoration: none;
}

.flex-container-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0;
}

.flex-container-header > div {
    margin: 0;
    padding: 0;
}

.flex-container-header > .push {
    padding: 0 0 0 15px;
    margin-left: auto;
}

.flex-container-header > .space {
    padding: 0 0 0 15px;
}

.flex-container-center {
  display: flex;
  flex-direction: row;
}

.flex-container-center > div {
  width: 100%;
  text-align: center;
}

.container {
    grid-area: main;
    padding: 0 15px 0 15px;
}

.footer {
    grid-area: footer;
    padding: 0 15px 0 15px;
    border-top: 2px solid #a4a4a4ff;
    text-align: center;
}

h1 {
    text-align: left;
	line-height: 0.5;
    font-size: 250%;
    font-weight: 800;
}

h2 {
    text-align: left;
	line-height: 0.5;
    font-size: 120%;
    color: #434343;
    font-weight: 500;
    font-style: italic;
}

h3 {
    text-align: left;
	line-height: 1.0;
    font-size: 120%;
    font-weight: 700;
}

h4 { 
    display: block;
    font-size: 80%;
    margin-top: 1.33em;
    color: #434343;
    margin-bottom: 1.33em;
    margin-left: 0;
    margin-right: 0;
    font-weight: bold;
}

.container img {
    border: 1px solid #555;
    border-radius: 4px;
	width: 45%;
    height: auto;
    cursor: pointer;
    transition: 0.3s;
}

.container img:hover {
	opacity: 0.9;
}

img.about {
    float: right;
	margin: 23px 2px 8px 20px;
}

img.left {
    float: left;
	margin: 7px 20px 8px 2px;
}

img.right {
    float: right;
	margin: 7px 2px 8px 20px;
}

/* unvisited link */
a:link {
    color: #3068c2;
    text-decoration: none;
}

/* visited link */
a:visited {
    color: #3068c2;
    text-decoration: none;
}

/* mouse over link */
a:hover {
    color: #3068c2;
    text-decoration: underline;
}

/* selected link */
a:active {
    color: #3068c2;
    text-decoration: none;
}

hr {
    display: block;
    height: 2px;
    border: 0;
    border-top: 2px solid #a4a4a4;
    margin: 1em 0;
    padding: 0 0 10px 0;
}

.container p {
    line-height: 1.5;
    text-align: justify;
}

.footer p {
    font-size: 80%;
}