:root {
  --ui-color: #FFB000;
  --page-bg: #000;
  --panel-bg: rgba(0, 0, 0, 0);
  --menu-bg: rgba(0, 0, 0, 0);
  --font-retro: 'Press Start 2P', 'Retro';
}

@font-face {
  font-family: 'Retro';
  src: url('retro.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--page-bg);
}

button {
  font-family: var(--font-retro);
  cursor: pointer;
}

p{
  color: #fff6f6; 
  margin-right: 1.5em;
  margin-left: 1.0em;
  line-height: 1.6em;
}

h1,h2,h3{
  text-align: center;
}

.indentp{
  color: #fff6f6;
  text-indent: 1.5em; 
  margin-right: 1.5em;
  margin-left: 1.0em;
  line-height: 1.6em;
}

img{
  border: 2px solid var(--ui-color);
  border-color: inherit;
  box-shadow: 8px currentColor;
}

a{
  font-style:italic;
}

/* Active state */
a:active {
  color: currentColor;
}

a:hover {
  color: #25b801;
}


.hidden-content {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;

  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body.light-mode p,
body.light-mode .indentp{
  color: #3d3a3a;
}
