@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
body {
  margin: 16px;
  background-color: white;
  color: black;
  font-family: Inter;
  font-size: 0.9em;
  font-weight: 400;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
}
body img {
  width: 100%;
}

ul {
  list-style-type: none;
  padding-left: 0;
}

a {
  color: slateblue;
  text-decoration: none;
}
a:visited {
  color: slateblue;
}
a:hover {
  border-bottom: 2px solid slateblue;
}

h1 {
  font-weight: 400;
}
h1 a {
  font-weight: 700;
}

h1, h2, h3 {
  font-size: 1em;
}

header {
  margin-bottom: 24px;
}
header h1 {
  margin-top: 0;
}

.nav {
  list-style-type: none;
  padding: 0;
}
.nav li {
  display: inline-block;
}

.posts {
  list-style-type: none;
  padding: 0;
}

.tags {
  list-style-type: none;
  padding: 0;
}
.tags li {
  display: inline-block;
}

.post-body {
  font-family: "Times New Roman";
  font-size: 1.1em;
}

.post-list {
  list-style-type: none;
  padding-left: 0;
}
.post-list li {
  padding-bottom: 16px;
}
.post-list li:last-of-type {
  padding-bottom: 0;
}

.tag:after {
  content: ", ";
}
.tag:last-of-type:after {
  content: ".";
}

.post-content {
  font-family: "Times New Roman";
}

@media only screen and (max-width: 600px) {
  body {
    font-size: 1em;
    max-width: 100%;
    margin: 16px;
    padding: 0;
  }
}
@media only screen and (min-width: 1500px) {
  body {
    max-width: 800px;
    margin: 128px auto;
  }
}
.image-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-gap: 12px;
}
.image-grid .item {
  min-width: 0;
  font-size: 0.75em;
}
.image-grid .project-card {
  list-style-type: none;
  margin: 0;
  padding: 12px;
  background-color: black;
  color: white;
}
.image-grid .project-card li {
  display: inline-block;
}
.image-grid .project-card li:after {
  content: " ~";
}
.image-grid .project-card li:last-of-type:after {
  content: "";
}
.image-grid a {
  text-decoration: none;
}

.control-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-gap: 12px;
}
.control-grid ul {
  margin: 0;
}
.control-grid li:before {
  margin-right: 4px;
  font-size: 1.15em;
  content: "○";
}
.control-grid .selected:before {
  content: "●";
}
.control-grid .font-control li:before {
  margin-right: 4px;
  content: "-";
}
.control-grid .font-control li:after {
  margin-left: 4px;
  content: "+";
}

.header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 12px;
}
.header p {
  margin-top: 0;
}

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