* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 16px;
  line-height: 1.5;
  color: #111;
  background-color: #fdfdfd;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 15px;
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: 2rem;
  line-height: 1.1;
}

h2 {
  font-size: 1.75rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.1rem;
}

h6 {
  font-size: 1rem;
}

@media screen and (max-width: 600px) {
  h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.3rem;
  }
  h3 {
    font-size: 1.1rem;
  }
  h4 {
    font-size: 1rem;
  }
}
p {
  margin-bottom: 15px;
}

a {
  color: #2a7ae2;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
  color: #1a4f9a;
}
a:visited {
  color: #1a4f9a;
}

code {
  font-family: "Menlo", "Monaco", "Courier New", monospace;
  background-color: #f5f5f5;
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 0.9em;
}

pre {
  background-color: #f5f5f5;
  border: 1px solid #e8e8e8;
  border-radius: 3px;
  padding: 12px;
  overflow-x: auto;
  margin-bottom: 30px;
}
pre code {
  background-color: transparent;
  padding: 0;
}

blockquote {
  border-left: 4px solid #e8e8e8;
  padding-left: 15px;
  font-style: italic;
  color: #828282;
  margin-bottom: 30px;
}

.wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 30px;
}
@media screen and (max-width: 600px) {
  .wrapper {
    padding: 0 15px;
  }
}

.site-header {
  border-bottom: 1px solid #e8e8e8;
  padding: 30px 0;
  background-color: #fff;
}
.site-header .wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.site-title {
  font-size: 1.625rem;
  font-weight: 300;
  display: inline-block;
  margin: 0;
}
.site-title a {
  color: #424242;
  text-decoration: none;
}
.site-title a:hover {
  text-decoration: none;
}

.site-nav {
  line-height: 2.5rem;
  flex: 1 1 auto;
}
.site-nav .trigger {
  display: flex;
  gap: 1.25rem;
  justify-content: flex-end;
  width: 100%;
}
.site-nav .page-link {
  display: inline-block;
  transition: color 0.2s ease;
}
@media screen and (max-width: 600px) {
  .site-nav {
    margin-top: 0.5rem;
    width: 100%;
  }
  .site-nav .trigger {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
  }
  .site-nav .page-link {
    padding: 0.25rem 0;
  }
}

main {
  flex: 1;
}

.page-content {
  padding: 30px 0;
}

.site-footer {
  border-top: 1px solid #e8e8e8;
  padding: 30px 0;
  background-color: #fff;
  font-size: 0.9rem;
  color: #828282;
}

.footer-col-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
}
@media screen and (max-width: 600px) {
  .footer-col-wrapper {
    flex-direction: column;
    margin-left: 0;
  }
}

.footer-col {
  flex: 1;
  padding-left: 15px;
  min-width: 250px;
}
@media screen and (max-width: 600px) {
  .footer-col {
    padding: 0 0 15px 0;
  }
}
.footer-col a {
  color: #2a7ae2;
}

.thumbnail {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  border: 1px solid #e8e8e8;
  padding: 5px;
  margin-right: 1rem;
  display: inline-block;
  vertical-align: top;
}

.notice--warning {
  background-color: #fff3cd;
  border-left: 4px solid #ffc107;
  padding: 15px;
  margin: 20px 0;
  border-radius: 4px;
}
.notice--warning strong {
  color: #664d03;
}

.notice--info {
  background-color: #e1f8ff;
  border-left: 4px solid #83e2ff;
  padding: 15px;
  margin: 20px 0;
  border-radius: 4px;
}
.notice--info strong {
  color: #003d6b;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 30px;
}
table th, table td {
  border: 1px solid #e8e8e8;
  padding: 10px 15px;
  text-align: left;
}
table th {
  background-color: #f5f5f5;
  font-weight: 600;
}
table tr:nth-child(even) {
  background-color: #f9f9f9;
}

ul, ol {
  margin-left: 2rem;
  margin-bottom: 30px;
}

li {
  margin-bottom: 0.5rem;
}

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

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}