html {
  font-size: 24px;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  margin: 0 auto;
}

body {
  background-color: #fff;
  color: #333;
  min-height: 100vh;
  max-width: 30rem;
  margin: 0 auto;
  padding: 0 1rem;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 32px;
  padding-bottom: 32px;
}

li p {
  margin: 0.5rem;
}

li a {
  text-decoration: none;
  color: rgb(51, 51, 51);
}

li a:hover {
  background-color: rgba(51, 51, 51, 0.1);
}

footer p {
  font-weight: bold;
}

/* TEST: Fun exclusive-to-this-site code */

/************
Emoji HTML:
<span class="header-emojis">🦾😎</span>
 ************/

.header-emojis {
  position: absolute;
  opacity: 0;
  width: auto;
  height: 0;
  top: -3em;
  left: 3.5em;
  font-size: 0.8em;
  letter-spacing: -0.3em;
  text-align: center;
  user-select: none;
  pointer-events: none;
  transition: all 2s ease;
}

h1 .jame:active .header-emojis {
  top: 0;
  opacity: 1;
}
