* { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
}

body { 
    font-family: Lilex, sans-serif; 
    background: #f9f7f2; 
    color: #1a1a1a; 
    padding: 2rem; 
    max-width: 720px; 
    margin: 0 auto; 
}

.input-area { 
    margin-bottom: 2rem; 
}

input[type="text"] {
  width: 100%;
  font-size: 0.8rem;
  padding: 0.5rem 0;
  border: none;
  border-bottom: 1px solid #1a1a1a;
  background: transparent;
  font-family: "Lilex", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  outline: none;
}
#reveal-all {
  display: none;
  margin-top: 0.75rem;
  font-size: 0.7rem;
  color: #aaa;
  background: none;
  border: none;
  padding: 0;
  font-family: "Lilex", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

#reveal-all:hover { 
    color: #1a1a1a; 
}

.essay { 
    font-size: 0.9rem; 
    line-height: 2; 
}

.word {
  display: inline-block;
  vertical-align: bottom;
}

.word.hidden {
  background: #1a1a1a;
  color: transparent;
  border-radius: 1px;
  user-select: none;
  position: relative;
  top: 2px;
}

.word.revealed { 
    color: inherit; 
    background: transparent; 
}

.word.just-revealed {
  color: inherit;
  background: transparent;
  text-decoration: underline;
  text-underline-offset: 3px;
}

p {
    margin-bottom: 1.4rem; 
}