body {
	height: 100svh;
	margin: 0;
	font-family: monospace, sans-serif;
	background: #ffffff;
	color: #000000;
}
.bg {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.bg pre.fill {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;

}
.bg pre {
	font-size: 6.5px;
	line-height: 6.5px;
}
#prebg {
  flex-direction: column;
  height: 100vh;
}
#prebg > div {
  white-space: pre;
  font-family: monospace;
  line-height: 1.05em;
  position: absolute;
}

section.full {
	height: 100vh;
	width: 100%;
	display: flex;
	align-items: center;
	position: relative;
}

body.toggle section {
	opacity: 0;
}

#toggle {
  z-index: 10;
	position: fixed;
	bottom: 10px; left: 10px;
  display: none;
}
#toggle::after {
  content: 'Hide';
}
body.toggle #toggle::after {
	content: 'Show';
}

.hero {
	padding: 0 20px;
}
h1 {
	font-size: 4em;
	margin: 8px;
}
h2 {
	font-size: 2em;
	margin: 18px;
}
h3 {
	font-size: 1.2em;
	margin: 18px;
}
h4 {
	font-size: 1.1em;
	margin: 18px;
}

.description {
	margin-left: auto;
	text-align: right;
	margin-bottom: 100px;
}
.contact a:hover {
	color: blue;
}
.contact {
}
.contact a {
  display: block;
  color: black;
  margin-left: 2em;
}
.contact.right {
	position: absolute;
	bottom: 10px;
	right: 10px;
	text-align: right;
}
.contact.right a {
	display: block;
	background-color: white;
	width: fit-content;
	margin-left: auto;
	color: black;
	padding: 2px;
	margin-top: 8px;
}
.cards > ul {
  list-style-type: none;
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  row-gap: 1em;
}
@media only screen and (min-width: 900px) {
  .cards > ul {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    column-gap: 1em;
  }
}
.cards > ul > li {
  border: solid 1px black;
  border-radius: 5px;
}
.cards ul ul {
  margin-bottom: 2em;
  margin-right: 1em;
}
.works {
  margin-top: 5em;
}
.works > ul > li li, .works > p {
  font-size: 12px;
}
.cards > ul > li li {
  color: #777;
  margin-bottom: 0.5em;
  margin-left: 0.5em;
}
.works > p {
  margin-bottom: 2em;
  margin-left: 1.5em;
}
.games li {
  margin-bottom: 1em;
}

@media only screen and (min-width: 1000px) {
	.bg pre {
		font-size: 0.7vw;
		line-height: 1em;
	}
}
@media only screen and (min-width: 900px) {
  #toggle {
    /* display: block; */
  }
}

section.normal {
  padding: 2em;
  margin-top: 4em;
  z-index: 20;
  position: relative;
}
