@charset "UTF-8";
/* Base */
body,
html {
  display: inline-block;
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 16px;
  font-weight: 400;
  color: #2e2f26;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Darumadrop One", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

h1 {
  font-size: 2em;
}

h2 {
  font-size: 1.3em;
  margin-top: 1.2em;
  margin-bottom: 0.5em;
}

h3 {
  font-size: 1em;
}

p {
  line-height: 1.5em;
}

hr {
  border: 1px dashed #f4e2e6;
  margin: 20px 0;
}

pre,
code {
  background-color: rgb(253, 246, 227);
  border-radius: 1px;
  color: #e83e8c;
  padding: 1px 5px;
  font-size: 14.4px;
  font-family: Consolas, Monaco, "Andale Mono", "Ubuntu Mono", monospace;
}

blockquote {
  font-size: 1.3em;
  font-family: "Darumadrop One", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-style: italic;
  color: #2e2f26;
  margin: 0;
  padding: 1.2em 30px 1.2em 75px;
  border-left: 8px solid #ab354c;
  line-height: 1.6;
  position: relative;
  background: #f4e2e6;
}

blockquote::before {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  content: "“";
  color: #ab354c;
  font-size: 4em;
  position: absolute;
  left: 10px;
  top: -10px;
}

span {
  color: #545454;
}

a {
  color: #ab354c;
  text-decoration: none;
  text-underline-offset: 2px;
  text-decoration: underline 2px;
}

button {
  border: 2px solid #ab354c;
  border-radius: 5px;
  padding: 10px 20px;
  background-color: transparent;
  font-size: 16px;
  font-weight: bold;
  color: #ab354c;
  margin: 20px 0;
}
button:hover {
  background-color: #ab354c;
  color: white;
}

/* base.html */
.wrapper .container {
  max-width: 900px;
  margin: auto;
}

nav.header {
  padding: 0.75em 1.5em;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-bottom: 2px solid #ab354c;
}
nav.header ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  column-gap: 1em;
}
nav.header li {
  margin-top: auto;
  margin-bottom: auto;
}
nav.header a,
nav.header .nav-brand,
nav.header .nav-text {
  font-family: "Darumadrop One", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  color: #ab354c;
}
nav.header a:hover {
  text-decoration: underline;
}
nav.header .nav-icons {
  display: flex;
  flex-direction: row;
  column-gap: 0.5em;
}

.grid {
  display: flex;
  flex-direction: column;
  padding: 1em;
}
@media screen and (min-width: 500px) {
  .grid {
    max-width: 600px;
    margin: auto;
  }
}
@media screen and (min-width: 900px) {
  .grid {
    max-width: none;
    margin: 1em auto;
    gap: 20px 40px;
    display: grid;
    width: 855px;
    grid-template-columns: 1fr 600px;
  }
}

.about {
  display: flex;
  flex-direction: column;
}
.about p {
  text-wrap: pretty;
  font-size: 14px;
  text-align: justify;
}
.about p:first-child {
  margin-top: 0;
}

.content {
  display: flex;
  flex-direction: column;
}

/* Home */
.home .post-list-expanded {
  text-align: justify;
}
.home .post-list-expanded h1 {
  font-size: 1.7em;
}
.home .post-list-expanded h1:first-child {
  margin: 0;
}
.home .post-list-expanded h1 :hover {
  text-decoration: underline;
}
.home .post-list-expanded h1 a {
  text-decoration: none;
}
.home .post-list-expanded h2 {
  font-size: 1.3em;
}
.home .post-list-expanded ul {
  margin: 0;
  list-style-type: none;
  padding: 0;
}
.home .post-list-expanded .date {
  margin: 0;
  font-family: "Darumadrop One", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

/* Post List - used in tags and tag list pages */
.post-list h1 {
  margin-top: 0;
}
.post-list ul {
  list-style-type: none;
  padding: 0;
}
.post-list ul li {
  margin-bottom: 1em;
  font-family: "Darumadrop One", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
.post-list ul li p {
  margin: 0;
}
.post-list ul li a {
  font-weight: bold;
  text-decoration: none;
}
.post-list ul li a:hover {
  text-decoration: underline;
}
.post-list ul li .title {
  font-size: 1.3em;
}
.post-list ul li .date {
  font-weight: bold;
}

/* Post - Used in post page and home page expanded post list */
.post {
  text-align: justify;
}
.post h1 {
  margin-top: 0;
  margin-bottom: 5px;
}
.post .date {
  font-family: "Darumadrop One", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
.post a {
  color: #ab354c;
}
.post img {
  border-radius: 5px;
  max-width: 100%;
  vertical-align: middle;
  height: auto;
}
.post img + img {
  margin-top: 0.5em;
}
.post figcaption {
  font-size: 0.9em;
  text-align: center;
  color: #545454;
}
.post figure > figcaption {
  margin-top: 0.5em;
}
.post .video-container {
  width: 100%;
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
}
.post .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.post .tags {
  margin-top: 1em;
  margin-bottom: 1em;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 0.35em;
  font-family: "Darumadrop One", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
.post .tags a {
  color: #2e2f26;
  font-size: small;
  text-decoration: none;
}
.post .tags a div {
  padding-right: 7px;
  padding-left: 7px;
  border-radius: 7px;
  width: fit-content;
  background-color: #f4e2e6;
}
.post .tags a p {
  display: inline-block;
  margin: 0;
}

/* Post nav - For navigating to more posts */
.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 2em;
}
.post-nav a {
  text-decoration: none;
}
.post-nav a:hover {
  text-decoration: underline;
}
.post-nav .right {
  text-align: right;
}
.post-nav .left {
  text-align: left;
}

/* Tag page */
/* Footer */
footer {
  display: flex;
  border-top: 1px solid #2e2f26;
}

.email {
  margin: 5px;
}