html, body,
div, section, main, aside,
h1, h2, h3, h4, h5, h6, p,
figure, figcaption {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

a {
  cursor: pointer;
  text-decoration: none; }

.container-fluid {
  width: 100%;
  overflow: auto; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto; }

.items-container {
  background-color: #ffffff;
  padding: 1.5rem 1rem 0; }

.card-container {
  padding: 1rem 1.5rem;
  margin-bottom: 1rem; }

@media (min-width: 600px) {
  .items-container {
    padding: 1.5rem 1.5rem 0; } }

@media (min-width: 900px) {
  .items-container {
    margin-left: 1rem;
    padding: 1rem 1rem 0; }
  .card-container {
    padding: 0 1.5rem 1.5rem; } }

@media (min-width: 1200px) {
  .items-container {
    margin-left: 0;
    padding: 1.5rem 1.5rem 0; }
  .card-container {
    padding: 0 0 1.5rem 1.5rem; } }

html {
  height: 100%; }

body {
  background-color: #f3f7fb;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  font-size: 16px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji", sans-serif; }

#header {
  background-color: #1d4160;
  padding: 0 .75rem;
  border-style: solid;
  border-width: 0 0 5px 0;
  border-color: #3981bf; }
  #header .container {
    height: 60px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between; }

#stager {
  flex: 1; }
  #stager .container {
    display: flex;
    flex-direction: column; }
    #stager .container main {
      overflow: auto; }

.home {
  padding-top: 0; }

#footer {
  background-color: #1d4160; }

@media (min-width: 900px) {
  #stager .container {
    flex-direction: row;
    align-items: stretch; }
    #stager .container main {
      flex: 1; }
    #stager .container aside {
      width: 33.33%;
      max-width: 320px; }
  .home {
    padding-top: 1rem; } }

@media (min-width: 1200px) {
  .home {
    padding-top: 2rem; } }

.logo {
  font-size: 1.75rem;
  color: #3981bf; }

.menu {
  font-size: .875rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around; }
  .menu .menu-item {
    display: block;
    margin-left: .75rem;
    color: #f3f7fb;
    transition: all .75s; }
    .menu .menu-item:hover {
      color: #3981bf; }
  .menu .active {
    color: #3981bf; }

@media (min-width: 600px) {
  .menu .menu-item {
    margin-left: 1rem; } }

@media (min-width: 1400px) {
  .menu {
    font-size: 1rem; }
    .menu .menu-item {
      margin-left: 1rem; } }

.copyright {
  margin: 1rem 0;
  font-size: .875rem;
  color: #d7e6f3;
  text-align: center; }

#headline .container {
  height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; }

.headline {
  background-color: rgba(29, 65, 96, 0.5);
  margin: 0 1rem;
  padding: 1rem 2rem;
  text-align: center;
  border-radius: 1rem;
  color: #afcde7; }
  .headline a {
    display: block;
    margin-top: 1rem;
    font-size: 1.5rem;
    color: #afcde7;
    transition: all .75s; }
    .headline a:hover {
      color: #ffffff; }
  .headline p {
    margin-top: 1rem;
    font-size: 1rem;
    line-height: 1.5rem;
    text-align: left; }
  .headline .headline-title {
    display: block;
    margin-top: 1rem;
    font-size: 1.5rem;
    color: #afcde7;
    transition: all .75s;
    pointer-events: none; }

@media (min-width: 600px) {
  .headline {
    width: 80%;
    margin: 0; } }

.item {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #d7e6f3;
  display: flex;
  flex-direction: row; }
  .item .item-thumbnail {
    display: none;
    margin-right: 1rem;
    width: 180px; }
    .item .item-thumbnail img {
      width: 100%; }
  .item .item-text {
    flex: 1; }
    .item .item-text .title {
      font-weight: bold;
      font-size: 1.25rem;
      line-height: 1.5rem;
      color: #2e689a; }
    .item .item-text .titlebutton {
      font-weight: bold;
      font-size: 1.25rem;
      line-height: 1.5rem;
      color: #2e689a;
      transition: all .75s; }
      .item .item-text .titlebutton:hover {
        color: #90b897; }
    .item .item-text .brief {
      font-size: .875rem;
      line-height: 1.5rem;
      color: #2e689a;
      margin: .5rem 0; }
    .item .item-text .meta {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      font-size: .875rem;
      color: #3475ad; }
    .item .item-text .button {
      display: block;
      margin-right: .5rem;
      padding: .375rem .5rem;
      border-radius: .25rem;
      background-color: #3981bf;
      color: #ffffff;
      transition: all .75s; }
      .item .item-text .button:hover {
        background-color: #90b897;
        color: #224e73; }
  .item:last-child {
    border-bottom: 0; }

@media (min-width: 600px) {
  .item .item-thumbnail {
    display: block; } }

@media (min-width: 900px) {
  .item {
    margin-bottom: 1rem;
    padding-bottom: 1rem; } }

@media (min-width: 1200px) {
  .item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem; } }

.breadcrumb {
  list-style: none;
  margin: 0;
  padding: 1rem;
  color: #2e5473;
  font-size: .875rem; }
  .breadcrumb .breadcrumb-item {
    display: inline; }
    .breadcrumb .breadcrumb-item + .breadcrumb-item:before {
      content: "/";
      margin: 0 .75rem;
      font-size: .75rem; }
  .breadcrumb .breadcrumb-link {
    color: #2e5473;
    transition: all .75s; }
    .breadcrumb .breadcrumb-link:hover {
      color: #90b897; }

@media (min-width: 1200px) {
  .breadcrumb {
    padding: 1rem 0; } }

.card {
  border: 1px solid #87b4db;
  padding: .75rem;
  position: relative; }
  .card .card-title {
    position: absolute;
    top: -0.75rem;
    right: 1rem;
    background-color: #f3f7fb;
    padding: 0 .5rem;
    font-size: 1rem;
    line-height: 1rem;
    color: #5f9bcf; }
  .card a {
    text-decoration: none;
    border-radius: .25rem;
    font-size: .875rem;
    line-height: 1.25rem;
    color: #3981bf;
    transition: all 1s; }
    .card a:hover {
      color: #90b897; }

.dumbbell a {
  padding: .25rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between; }
  .dumbbell a .dashed-line {
    flex: 1;
    border-bottom: 1px dashed grey;
    margin: 0 1rem; }
  .dumbbell a:last-child {
    margin-bottom: 0; }

.follow a {
  display: inline-block;
  line-height: 1.5rem;
  margin-right: .5rem;
  padding: 0 .25rem; }

.normal ul {
  list-style: none;
  margin: 0 1.25rem;
  padding: 0; }
  .normal ul li {
    line-height: 1.5rem; }
    .normal ul li::before {
      content: "\2022";
      color: #3981bf;
      font-weight: bold;
      display: inline-block;
      width: 1rem;
      margin-left: -1rem; }

.normal img {
  width: 100%;
  max-width: 100%; }

.normal p {
  text-align: center;
  font-size: .875rem;
  color: #3475ad;
  margin-top: .5rem; }
  .normal p i {
    font-size: 1rem;
    margin-right: .5rem; }

.about {
  margin: 0 auto;
  max-width: 400px; }
  .about .avatar {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; }
    .about .avatar img {
      width: 100px;
      border-radius: 50px; }
  .about .name {
    margin-top: 1rem;
    text-align: center;
    font-size: 1.25rem;
    color: #285b87; }
  .about .description {
    margin: 1rem 1rem 0;
    color: #2e689a;
    text-align: justify;
    font-size: .875rem;
    line-height: 1.5rem; }
  .about .email {
    margin: .5rem 1rem 0;
    color: #2e689a;
    text-align: center;
    font-size: .875rem;
    line-height: 1.5rem; }

.content {
  padding: 0 0 1rem 0;
  margin-bottom: 3rem; }
  .content .content-header {
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid #d7e6f3; }
    .content .content-header .title {
      color: #2e689a;
      margin-top: 1rem; }
    .content .content-header .meta {
      color: #3475ad;
      margin: 1rem 0 2rem;
      font-size: .875rem; }
  .content .content-tag {
    border-top: 1px solid #d7e6f3;
    border-bottom: 1px solid #d7e6f3;
    text-align: center;
    padding: .5rem 0;
    margin: 2rem 0; }
    .content .content-tag a {
      display: inline-block;
      margin: 0 .375rem; }
  .content .content-nav {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem; }
    .content .content-nav a {
      display: block;
      margin: .25rem .5rem; }
  .content a {
    color: #3981bf;
    transition: all 1s; }
    .content a:hover {
      color: #90b897; }

@media (min-width: 600px) {
  .content .content-nav {
    flex-direction: row;
    align-items: center;
    justify-content: space-between; } }

@media (min-width: 1200px) {
  .content {
    padding: 1rem; } }

.markdown {
  color: #2e689a; }
  .markdown a {
    color: #3981bf;
    text-decoration: none;
    transition: all 1s; }
    .markdown a:hover {
      text-decoration: underline;
      color: #3981bf; }
  .markdown h1 {
    margin-top: 2rem; }
  .markdown h2 {
    margin-top: 2rem; }
  .markdown h3 {
    margin-top: 1.5rem; }
  .markdown h4 {
    margin-top: 1rem; }
  .markdown h5 {
    margin-top: 1rem; }
  .markdown h6 {
    margin-top: 1rem; }
  .markdown p {
    margin-top: 1rem;
    line-height: 1.75rem;
    text-align: justify; }
  .markdown blockquote {
    background-color: #f3f7fb;
    margin: 1rem 0 0;
    padding: 1rem 1.5rem; }
    .markdown blockquote p {
      margin: 0;
      color: #3475ad; }
  .markdown img {
    display: block;
    width: 100%;
    max-width: 100%;
    margin-top: 1rem; }
  .markdown figure {
    margin: 0;
    padding: 0; }
    .markdown figure img {
      display: block;
      width: 100%;
      max-width: 100%; }
    .markdown figure figcaption h4 {
      margin: 0;
      padding: .5rem 0;
      text-align: right;
      font-family: serif;
      font-size: .875rem;
      font-weight: normal;
      line-height: 1rem;
      color: #3475ad; }
  .markdown code {
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: .875rem;
    color: #f3f7fb;
    background-color: #285b87;
    padding: .125rem .375rem; }
  .markdown pre {
    font-size: .875rem;
    padding: 1rem;
    background-color: #f3f7fb;
    border: 1px solid #87b4db;
    line-height: 1.5rem;
    overflow: auto; }
    .markdown pre * {
      padding: 0; }
    .markdown pre code {
      color: inherit;
      background-color: inherit; }
  .markdown .footnotes {
    margin-top: 3rem;
    border-top: 1px solid #d7e6f3; }
    .markdown .footnotes ol {
      font-size: .875rem;
      padding-left: 2rem;
      padding-right: 1rem; }
    .markdown .footnotes hr {
      display: none; }
    .markdown .footnotes p {
      font-size: .875rem;
      line-height: 1.5rem; }
  .markdown cite {
    color: #1d4160;
    font-style: normal; }
    .markdown cite a:before {
      content: "["; }
    .markdown cite a:after {
      content: "]"; }
  .markdown ol, .markdown ul {
    color: #2e689a;
    margin-top: 1rem;
    padding-left: 1.25rem; }
    .markdown ol ol, .markdown ol ul, .markdown ul ol, .markdown ul ul {
      margin-top: 0;
      padding-left: 1rem; }
    .markdown ol li, .markdown ul li {
      margin-top: .5rem; }
  .markdown ul {
    list-style: disc; }
  .markdown kbd {
    background-color: #2e689a;
    color: #ffffff;
    font-size: .75rem;
    padding: .25rem .375rem;
    margin: 0 .375rem;
    border-radius: .25rem; }
  .markdown mark {
    background-color: rgba(254, 144, 77, 0.75);
    color: #285b87;
    padding: 0 .25rem; }
  .markdown table {
    overflow: auto;
    margin-top: 1rem;
    font-size: .875rem;
    color: #2e689a; }
    .markdown table th {
      background-color: #fe904d;
      padding: .5rem .75rem;
      text-align: center;
      color: #285b87; }
    .markdown table td {
      background-color: #f3f7fb;
      padding: .25rem .5rem;
      text-align: center; }

@media (min-width: 1200px) {
  .markdown ol, .markdown ul {
    padding-left: 2.5rem; }
    .markdown ol ol, .markdown ol ul, .markdown ul ol, .markdown ul ul {
      padding-left: 2rem; } }

#totoc {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem; }
  #totoc a {
    display: block;
    padding: .25rem;
    font-size: 2rem;
    color: #3981bf;
    transition: all 1s; }
    #totoc a:hover {
      color: #90b897; }

.gallery {
  background-color: #285b87; }
  .gallery .active {
    display: block; }
  .gallery .inactive {
    display: none; }
  .gallery a {
    padding: .75rem;
    border-left: 1px solid #3475ad;
    text-align: center;
    font-size: 1.5rem;
    line-height: 1.5rem;
    color: #5f9bcf;
    transition: all 1s; }
    .gallery a:hover {
      color: #ffffff;
      background-color: #224e73; }
  .gallery .gallery-button {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end; }
  .gallery .button-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    border-top: 1px solid #3475ad;
    background-color: rgba(40, 91, 135, 0.5); }
  .gallery .button-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    border-bottom: 1px solid #3475ad;
    background-color: rgba(40, 91, 135, 0.5); }
  .gallery .gallery-stage {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; }
    .gallery .gallery-stage .gallery-item {
      max-width: 100vw;
      max-height: 100vh;
      padding: .5rem; }
      .gallery .gallery-stage .gallery-item img {
        display: block;
        width: auto;
        height: auto;
        max-width: 100%;
        max-height: 100%;
        margin: 0 auto; }
      .gallery .gallery-stage .gallery-item .item-info {
        position: fixed;
        bottom: 4rem;
        right: 1rem;
        left: 1rem;
        background-color: rgba(34, 78, 115, 0.9);
        border-radius: .5rem;
        padding: .875rem; }
        .gallery .gallery-stage .gallery-item .item-info .title {
          display: flex;
          flex-direction: row;
          align-items: center;
          justify-content: space-between;
          margin-bottom: .5rem;
          color: #5f9bcf; }
          .gallery .gallery-stage .gallery-item .item-info .title span {
            font-size: .875rem;
            margin: .125rem; }
        .gallery .gallery-stage .gallery-item .item-info p {
          font-size: .875rem;
          line-height: 1.5rem;
          color: #5f9bcf;
          text-align: justify;
          border-top: 1px solid #3475ad;
          padding: .25rem 0; }
          .gallery .gallery-stage .gallery-item .item-info p span {
            font-size: .75rem;
            margin: .25rem; }

@media (min-width: 600px) {
  .gallery .gallery-stage .gallery-item .item-info {
    left: auto;
    right: 1rem;
    width: 400px; } }

.info {
  border-left: .375rem solid blue;
  background-color: rgba(0, 0, 255, 0.15);
  padding: 1rem 1.5rem;
  margin-top: 1rem;
  color: #285b87;
  font-size: .875rem;
  line-height: 1.5rem; }

.warning {
  border-left: .375rem solid orange;
  background-color: rgba(255, 165, 0, 0.15);
  padding: 1rem 1.5rem;
  margin-top: 1rem;
  color: #285b87;
  font-size: .875rem;
  line-height: 1.5rem; }

.danger {
  border-left: .375rem solid red;
  background-color: rgba(255, 0, 0, 0.15);
  padding: 1rem 1.5rem;
  margin-top: 1rem;
  color: #285b87;
  font-size: .875rem;
  line-height: 1.5rem; }

.screen {
  border-left: 0.375rem solid #3475ad;
  background-color: rgba(52, 117, 173, 0.15);
  padding: 1rem 1.5rem;
  margin-top: 1rem;
  color: #285b87;
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: .875rem;
  line-height: 1.5rem; }
