:root {
  --color-active: #0080ff;
  --color-down: #000000;
  --color-mid: #808080;
  --color-up: #ffffff;
}
* {
  box-sizing: border-box;
  color: var(--color-up);
  font-size: 100%;
  font-weight: normal;
  margin: 0;
  outline: none;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
:not(input) {
  user-select: none;
  -webkit-user-select: none;
}
html {
  background: var(--color-down);
  height: 100%;
}
body {
  display: flex;
  flex-direction: column;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.25em;
  height: 100%;
  justify-content: center;
}
button {
  background: none;
  border: none;
  /* border-radius: 100%; */
  font-weight: bold;
  margin: 0.75em auto;
  padding: 0.75em 0.875em;
}
/* button:active {
  background: var(--color-up);
  color: var(--color-active);
}
button:focus,
button:hover {
  background: var(--color-up);
  color: var(--color-down);
} */
form {
  margin: auto;
  max-width: 90vw;
  width: 20em;
}
h1 {
  padding: 1.25em;
  text-align: center;
}
iframe {
  border: none;
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
}
input {
  background: none;
  border: none;
  border-bottom: 1px solid var(--color-mid);
  border-radius: 0;
  color: var(--color-up);
  padding: 0.75em;
  text-align: center;
  width: 100%;
}
input:focus {
  background: var(--color-up);
  color: var(--color-down);
}
li:last-child input {
  border-bottom: none;
}
p {
  text-align: center;
}
ul {
  border: 0.125em solid var(--color-up);
  border-radius: 0.5em;
  list-style: none;
  overflow: hidden;
}
