@charset "utf-8";
@import "./reset.css";

:root {
  --bg-color: #ffffff;
  --front-color: #000000;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg-color: #1c1c1c;
    --front-color: #dedede;
  }
}

html,body {
  background: var(--bg-color);
  color: var(--front-color);
}
/* .container {
  width: 90%;
  margin: 1rem auto;
} */

pre {
  border: 1px solid #cccccc21;
  padding: .3rem .6rem;
  line-height: 1.2;
}
pre code,
code {
  font-size: 0.8rem;
  font-weight: 100;
}

hr {
  border: none;
  border-top: 1px solid #cccccc21;
}

table {
  /* border: 1px solid #dee2e6; */
  /* width: 100%; */
  
  & tr:nth-child(2n),
  & th {
    /* background-color: #a6bbc34c; */
  }
  & th {
    font-weight: bold;
    font-size: 1.2rem;
  }
  & th, & td {
    padding: .3rem;
    border-bottom: 1px solid #dee2e613;
  }
}