@import url("base.css");

/* 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." */

/* Greek: unicode-range: U+0370-03FF, U+1F00-1FFF;*/

/* EB Garamond - all scripts except Vietnamese - from https://gwfh.mranftl.com */
@font-face {
  font-family: 'EB Garamond';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/eb-garamond-v32-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'EB Garamond';
  font-style: italic;
  font-weight: 400;
  src: url('fonts/eb-garamond-v32-italic.woff2') format('woff2');
}


strong {
	font-weight: 400;
	/*font-feature-settings: "smcp";*/
	color: #c03;
}

body {
	background-color: black;/*silver;*/
	color: white;
	font-family: "EB Garamond";
	font-size: 18px;

	background-image: url("../img/as-she-is-writ.gif");
	background-position: center top;
	background-repeat: repeat;
	background-attachment: fixed;
	background-size: auto;
}

h1 {text-align:center;}
h2, h3, h4, h5, h6 {color: #c03;}/*crimson;}*/

/*
hgroup > :is(h1,h2,h3,h4,h5,h6) {
    margin-bottom: 0;
}
*/

hgroup > p {
    font-style: italic;
    /*margin-top: 0;*/
}

a:link {color: #099;}
a:visited {color: #699;}/*cadetblue;}*/

ul.nav {
	text-align: center;
	font-size: 22px;
	line-height: 2em;
	list-style-type: none;
	padding-left: 0;
	margin: 0;
}

.center {	
	width: 50%;
	min-width: 22.5rem; /*px => rem*/
	margin-left:auto;
	margin-right:auto;
}

.box {
	border: 4px solid #802;
	background-color: #0006;
	padding: 10px;
	margin: 10px;
}
	
.block {
	display: block;
	margin-left: auto;
	margin-right: auto;	
}

.faint {
	color: silver;
	font-style: italic;
	text-align: center;
}

.unstyled {all: revert;}