/* Page Layout */
body {
  font-family: OpenSans, Arial;
  color: #555;
  margin: 0;
  --col-width: 500px;
}
h1 {
  text-align: center;
  background: #f5f5f5;
  padding: 1rem;
  box-shadow: 0 0 3px rgba(0, 0, 0, .3);
}
h2 {
  text-align: center;
}
article {
  background-color: #f5f5f5;
  padding: 2rem;
  margin: 1rem auto;
  max-width: var(--col-width);
  box-shadow: 1px 1px 3px rgba(0, 0, 0, .3);
}
article p {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px dotted #ccc;
}

#intro {
  max-width: var(--col-width);
  margin: 2rem auto;
}

/* Used within components */
button {
  background-color: #2a85d2;
  border-radius: 5px;
  border: none;
  color: white;
  font-size: 3rem;
  text-align: center;
  padding: 0 1rem;
  cursor: pointer;
}

button.reset {
  font-size: 1rem;
  margin-left: 5rem;
}

span {
  display: inline-block;
  font-size: 2rem;
  padding: 2rem;
  width: 50px;
  text-align: right;
}

progress {
  display: block;
  width: 100%;
}

.description {
  color: #888;
  font-style: italic;
}
