body {
  font-family: monospace;
  font-weight: 400;
  max-width: 90%;
  margin: 20px auto;
}

h1 {
  font-size: 18px;
}

.frame {
  padding: 20px 0;
  margin-top: 20px;
  max-width: 800px;
  border-top: 1px solid red;
  border-bottom: 1px solid red;
}

#textspans {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

span {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  cursor: pointer;
  color: transparent;
  transition: color 1s ease-out;
/*
  margin: 2px;
  background: #eee;*/
}

span:hover {
  color: #666;
}

.red,
red:hover {
  color: red;
  cursor: text;
}

#text { display: none; }

p { margin-bottom: 20px; }
