:root {
    text-align: center;
    font-family: "Goudy Bookletter 1911",Times,serif;
    line-height: 1.5;
    font-size: 16px;
	--bg-color: #EAEAEA;
	--color: #1A1A1A;
	color: var(--color);
	background-color: var(--bg-color);
}
[data-darkmode] {
	--bg-color: #1A1A1A;
	--color: #EAEAEA;
}

h1, h2, h3 {
	margin:-3px auto;
}
h1 {
  font-size: 40px;
}
h2{
  font-size: 30px;
}
h3{
  font-size: 20px;
}
h4{
  font-size:10px;
  line-height:0;
}
a {
  color: var(--color);
  white-space: nowrap;
  text-decoration: underline;
}
input:hover, a:hover {
  color: red;
}
input:active, a:active {
  color: darkred;
  text-decoration: underline overline;
}
input {
  color: var(--color);
  text-decoration: underline;
  background: transparent;
  cursor: pointer;
  font-weight: bold;
  font-size: 20px;
  border: none;
  font-family: "Goudy Bookletter 1911",Times,serif;
}

table {
	margin-left: auto;
	margin-right: auto;
}
.darkred {
	border-color: darkred;
	background-color: darkred;
	margin-top: -4px;
	padding-left:4px;
	padding-right:4px;
	font-size: 110%;
	color: #EAEAEA;
}
.darkred a {
	color: #EAEAEA;
}
.darkmode{
	float:right;
	display:inline-block;
	height:0px
}