/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

	body {
 font-family: "Figtree", sans-serif;
		font-optical-sizing: auto;
		 font-weight: 400;
  font-style: normal;
				
	line-height: 1.75;
			background-color: #FCF5E5;
		min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh
  
}

* + * {
  margin-top: 1.5em;
 
}

	* {
  font-family: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0;
}



*, *:before, *:after {
  box-sizing: border-box;
}
	

h1, h2, h3, h4, p, ul, ol {
  margin: 0 10px 1em 10px;
	
}

	h1,
	h2,
	h3,
	h4
	{
		font-family: "Grenze", serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
		 text-align: center;
		 margin-top: 1.5em;
		text-wrap: balance;
	}

	
	a {
		font-weight: 600;
		text-decoration: underline;
	}
	
	
	.container{
	 width: 100%;
  max-width: 50rem;
  margin-inline: auto;
	}
	
	
	main{
	 max-width: 1200px;
	margin: 0 auto 30px;
	display: block;
     padding: 0 10px ;
		 display: flex;
  flex-direction: column;
  justify-content: center
}
	
	
img, picture {
  max-width: 100%;
  display: block
}

	
figure {
  text-align: center;
  font-size: smaller;
  text-indent: 0;
  margin: 0.5em;
  padding: 0.5em;
  display: table;
}
	
	 
figcaption {
  color: #666666;
  display: table-caption;
  caption-side: bottom;
}

	article{
		
		
		margin: 5px 0px; 
    border-bottom: 1px solid #CECECE;
	}
	
		.special {
		
		 border: 3px solid #CECECE;
		padding: 10px;
	}


dl {
	padding-left:1.5em;
}

dt {
	font-weight: bold;
	margin-top: 10px;
}

dd {
    margin-left: 1.5em;
	margin-bottom: 1em;
}	
	
	
	
	blockquote{
		font-style: italic;
		 quotes: "“" "”" "‘" "’";
		text-align: center;
		font-size: 1.3em;
	}
	
	
	
	blockquote::before {
    content: open-quote;
}
blockquote::after {
    content: close-quote;
}
	
	
	.quotesource	{
		text-align: center;
	}
	
	.notes::before {
		font-weight: bold;
		
		 content: " Notes: "
		
	}
	
	
	footer{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
		
	}
	
	.copyright::before {
		
	content: "© Phil Myhill 2026 ";
	}
	