@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;700;900&display=swap");
.h1 {
  font-size: 2.5rem;
  font-weight: 900;
}

.h2, .h3 {
  font-size: 1.8rem;
  line-height: 1.2;
  font-weight: 700;
}

.h3 {
  font-size: 1.2rem;
}

a {
  color: #64F;
}

img {
  max-width: 100%;
}

body {
  background-color: white;
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
  padding: 0;
  margin: 0;
  font-family: "Noto Sans", sans-serif;
}

.container {
  max-width: 45rem;
  padding: 0 2dvw;
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
}
header h1 {
  margin: 0;
  padding: 0;
  font-size: 1em;
}
header .brand {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  text-decoration: none;
}
header .brand svg {
  width: auto;
  height: 1.4em;
  fill: currentColor;
}
header .brand span {
  font-weight: 900;
  text-transform: uppercase;
}
header .brand span span {
  text-transform: none;
  font-variant: all-small-caps;
}
header .header {
  display: grid;
  grid-template-columns: max-content auto;
  align-items: center;
  gap: 1.2rem;
  background: white;
  padding: 1.2rem 0;
}
header .container:after {
  content: "";
  display: block;
  height: 1rem;
  background: transparent url("../images/shadow-90d6ab24673f41ec0bf1411589356a74.svg") no-repeat center top;
  background-size: 100% 100%;
}
header nav {
  text-align: right;
}

.post {
  display: grid;
  grid-template-columns: 20% auto;
  gap: 1.2rem;
  margin: 2.4rem 0;
}
.post img {
  border-radius: 0.2rem;
}
.post .author {
  font-weight: bold;
}
.post .content {
  gap: 0.6rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.post blockquote {
  margin: 0;
  padding: 0;
}

.tags {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.tag {
  display: inline-block;
  box-shadow: 0 0.1rem 0.3rem rgba(0, 0, 0, 0.1);
  color: #333;
  padding: 0 0.6rem;
  border-radius: 0.3rem;
  font-size: 0.8em;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
}
.tag.active {
  background-color: #aaa;
  color: #fff;
}
.tag.missing {
  background-color: #fee;
  color: #f00;
  text-decoration: line-through;
}

/*# sourceMappingURL=app.output.css.map */
