/**
 * Minimal theme for Jekyll
 */
* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  font-weight: 400;
  color: #333;
  background-color: #fdfdfd;
  margin: 0;
  padding: 0;
}

.wrapper {
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

.wrapper:after {
  content: "";
  display: table;
  clear: both;
}

.site-header {
  border-top: 5px solid #03254c;
  border-bottom: 1px solid #e8e8e8;
  min-height: 56px;
  position: relative;
}

.site-title {
  font-size: 26px;
  font-weight: 300;
  line-height: 56px;
  letter-spacing: -1px;
  margin-bottom: 0;
  float: left;
}
.site-title, .site-title:visited {
  color: rgb(66.25, 66.25, 66.25);
}

.site-nav {
  float: right;
  line-height: 56px;
}
.site-nav a {
  color: #333;
  margin-left: 1.5rem;
}
.site-nav a:hover {
  color: #03254c;
}

.page-content {
  padding: 1.5rem 0;
  flex: 1;
}

.site-footer {
  border-top: 1px solid #e8e8e8;
  padding: 1.5rem 0;
  font-size: 15px;
  color: #828282;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 300;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

a {
  color: #03254c;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.post-list {
  margin-left: 0;
  list-style: none;
}
.post-list > li {
  margin-bottom: 1.5rem;
}

.post-meta {
  font-size: 14px;
  color: #828282;
}

.post-link {
  font-size: 24px;
  display: block;
}

.post-header {
  margin-bottom: 1.5rem;
}

.post-title {
  font-size: 42px;
  letter-spacing: -1px;
  line-height: 1;
}
@media screen and (max-width: 800px) {
  .post-title {
    font-size: 36px;
  }
}

.post-content {
  margin-bottom: 1.5rem;
}
.post-content h2 {
  font-size: 32px;
}
@media screen and (max-width: 800px) {
  .post-content h2 {
    font-size: 28px;
  }
}
.post-content h3 {
  font-size: 26px;
}
.post-content h4 {
  font-size: 20px;
}

p {
  box-sizing: border-box;
  color: var(--ams-paragraph-color);
  font-family: var(--ams-paragraph-font-family);
  font-size: var(--ams-paragraph-font-size);
  font-weight: var(--ams-paragraph-font-weight);
  line-height: var(--ams-paragraph-line-height);
  text-rendering: optimizeLegibility;
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  hyphenate-limit-chars: var(--ams-typography-hyphenate-limit-chars);
  hyphens: auto;
  overflow-wrap: break-word;
  margin-block: 0;
  padding-bottom: 2rem;
}

.ams-link-list--horizontal {
  display: flex;
  flex-wrap: wrap;
  gap: var(--ams-link-list-gap);
}

li {
  color: var(--ams-paragraph-color);
  font-family: var(--ams-paragraph-font-family);
  font-size: var(--ams-paragraph-font-size);
  font-weight: var(--ams-paragraph-font-weight);
  line-height: var(--ams-paragraph-line-height);
}

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