@media (max-width: 480px) {
  html {
    font-size: 10px;
  }
}
@media (max-width: 720px) {
  html {
    font-size: 12px;
  }
}
@media (max-width: 1200px) {
  html {
    font-size: 18px;
  }
}
body {
  margin: 0;
}

.container {
  display: flex;
  font-family: "Source Code Pro";
  letter-spacing: 0.1rem;
  word-break: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
}

.side {
  flex: 1;
  padding: 1rem;
  height: 100vh;
  background-color: gainsboro;
}

.content {
  flex: 4;
  padding: 1rem;
  height: 100vh;
  line-height: 1.5rem;
  overflow: scroll;
  -webkit-overflow-scrolling: touch;
}

.link {
  color: #3c3c3c;
}

/*# sourceMappingURL=styles.css.map */
