@import url('https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400..700;1,400..700&display=swap');

/* @import "styles/debug.css"; */
@import "styles/reset.css";
@import "styles/font-size.css";

body {
  margin: 12px;
}

* {
  font-family: "Arimo", sans-serif;
  /* font-family: Arial; */
}

hr {
  margin: 12px 0;
}

a {
  display: inline-block;
}

table {
  border-collapse: collapse;
  width: 100%;
}

th, td {
  border: 1px solid #404040;
  white-space: nowrap;
}

.mt-2 {
  margin-top: 8px;
}

.mt-3 {
  margin-top: 12px;
}

.overflow-x-auto {
  overflow-x: auto;
}

li::marker {
  display: inline-block;
  font-size: 16px;
  line-height: 24px;
}

::selection {
  color: white;
  background-color: black;
}

hr {
  border: none;
  height: 1px;
  background-color: #404040;
}

sup {
  vertical-align: top;
}

@media (prefers-color-scheme: dark) {
  * {
    background-color: black;
    color: white;
  }

  ::selection {
    color: black;
    background-color: white;
  }
}