#matrix {
  margin: auto;
  padding: 0.5rem;
  height: auto;
  width: 80%;
  background-color: rgba(50, 50, 50, 0.5);
  border-color: rgba(0, 0, 255, 0.5);
  border-width: 3px;
  border-style: solid;
}

.size {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: calc(100%/16);
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  overflow: hidden;
}

.block {
  font-family: "Source Code Pro", "monospace";
  width: 100%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  font-size: 2.35em;
  line-height: 0.8em;
  color: #282828;
  -webkit-transition: color 0.1s;
  transition: color 0.1s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 1s;
  transition: all 1s;
}

@media screen and (max-width: 850px) {
  .block {
    font-size: 1.75em;
  }
}
/*# sourceMappingURL=matrix.css.map */