.stopwatch {
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.stopwatch .time {
  font-size: 1.5rem;
  line-height: 2em;
  padding: 0 3em;
  background: #222;
  color: #eee;
  text-align: center;
  border-radius: 1em;
}

.time > span {
  color: white;
  display: inline;
}

.stopwatch .controls {
  margin-top: 1em;
}

.stopwatch .controls > svg {
  padding: 0 0.3em;
  cursor: pointer;
}

.stopwatch .controls > svg:hover {
  color: #31302d;
}


/*# sourceMappingURL=demo.fcb47596.css.map*/