@font-face{
  font-family: "Inconsolata";
  src: url("./Inconsolata.ttf");
}

html {
  font-size:62.5%;
}

* {
  box-sizing: border-box;
}

html, body {
  margin:0;
  padding:0;
}

main{
  display:grid;
  place-items:center;
  height:100dvh;
  overflow:auto; /* autoです。 */
}

.shiki{
  width:100%;
  font-size:1.9rem;
  line-height:2.7rem;
  display:flex;
  overflow:scroll;
  padding:0.5rem 1.5rem;
}

code{
  font-family:'Inconsolata';
}