body, html {
	margin: 0;
	padding: 0;
  }
  
  body {
	background: #111;
	text-align: center;
	overflow-x: hidden;
  }
  
  * {
	-webkit-tap-highlight-color: transparent !important;
	outline: none !important;
  }

  .mousefollower {
	position: absolute;
	top: -100px;
	left: -100px;
	pointer-events: none;
}
  
  .logo {
	margin: 40px 0 20px 0;
	font-size: 4em;
	padding: 5px 0 5px 15px;
	text-align: left;
	width: 8ch;
	font-family: monospace;
	background: cyan;
	font-weight: normal;
	display: inline-block;
  }
  
  small.subtitle {
	font-size: 1.1em;
	font-family: monospace;
	background: cyan;
	padding: 3px 10px 3px 10px;
	margin: 0 5px;
  }
  
  small.subtitle:empty {
	padding: 0;
  }
  
  section {
	margin: 40px auto;
	width: 500px;
	max-width: 80vw;
	background: cyan;
	padding: 15px 15px 10px 15px;
	text-align: left;
  }
  section * {
	font-family: monospace;
  }
  section h4 {
	display: list-item;
	list-style-type: disc;
	list-style-position: inside;
	margin: 0;
	padding: 5px;
	background: #111;
	color: cyan;
  }
  section p {
	min-height: 1.9ch;
	padding: 0 15px;
	color: black;
	line-height: 150%;
  }
  section p a {
	background: #111;
	color: cyan;
	padding: 2px;
	font-weight: bold;
  }
  
  footer {
	color: cyan;
	font-family: monospace;
	padding: 10px 20px;
	margin: 30px auto 30px auto;
	border: 1px solid cyan;
  }
  
  
  
  .toggleable, footer, .contacts {
	display: none;
  }
  .toggleable.show, footer.show, .show.contacts {
	display: inline-block;
  }
  
  @keyframes showSection {
	from {
	  transform: scaleX(0);
	}
	to {
	  transform: scaleX(1);
	}
  }
  .showSection, section, footer {
	animation: showSection 0.3s ease;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
  }

.contacts.show{
	display: flex;
	justify-content: center;
}

.contactslink svg{
	transition: stroke 0.2s ease;
	display: inline;
	height: 30px;
	width: 32px;
	fill: transparent;
	stroke: cyan;
	padding:5px;
	margin: 5px;
	border: 1px solid cyan;
}

svg.inner{
	fill: cyan;
	stroke: transparent;
}

.contactslink:hover svg{
	background: cyan;
	fill: transparent;
	stroke: #111;
}

.contactslink:hover svg.inner{
	background: cyan;
	fill: #111;
	stroke: transparent;
}

.mousefollower {
	position: absolute;
	top: -100px;
	left: -100px;
	pointer-events: none;
}
