html {
  overflow-y: scroll;
}

body {
  margin: 0;
  background-color: #fffaf5;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  font-size: 18px;
}

button {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
}

a {
  color: #2c87f0;
  text-decoration: none;
}

a:hover {
  color: blue;
  border-bottom: 1px solid;
}

blockquote {
  padding: 0 20px;
  margin-left: 20px;
  border-left: 4px solid gold;
  background-color: #fafafa;
  border-radius: 5px;
}

img {
  display: block;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

figcaption {
  text-align: center;
  font-size: 16px;
  color: gray;
  padding: 10px;
}

.viewport {
  display: flex;
  justify-content: center;
  box-sizing: border-box;
  padding: 0px 5px 5px 5px;
}

.website-container {
  width: 800px;
  max-width: 100%;
}

.tag {
  padding-left: 5px;
  padding-right: 5px;
  height: 90%;
  align-self: center;
  border-radius: 5px;
}

.content-box {
  background-color: #eee;
  margin-top: 20px;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 0 3px gray;
}

a.grey-link {
  color: var(--font-color-dark);
  text-decoration: none;
  border-bottom: 0;
}

a.grey-link:hover {
  color: var(--primary-dark);
}

a.grey-link span {
  border-bottom: 1px solid #bfbfbf;
}

/*
POST LIST ON MAIN PAGE
*/
.post-list {
  display: flex;
  flex-direction: column;
}

.post-link:hover {
  border-bottom: none;
}

.post-entry {
  display: flex;
  margin-top: 1px;
  margin-bottom: 1px;
  color: black;
  border-radius: 5px;
}

.post-entry:hover {
  background-color: lightgray;
}

.post-entry-left {
  display: flex;
  margin-right: auto;
  overflow: hidden;
}

.post-title {
  margin-left: 5px;
  border-bottom: 1px solid rgb(190, 190, 190);
}

.post-date {
  margin: 0px 5px 0px;
  color: grey;
}

/*
POST PAGE
*/
.post-info {
  min-width: 20%;
  color: grey;
}

.post-content {
  text-align: justify;
  text-justify: auto;
}

@media screen and (max-width: 480px) {
  .post-entry {
    flex-direction: column;
  }
  .post-info {
    min-width: 33%;
  }
  .post-content {
    margin-left: 5px;
    margin-right: 5px;
  }
}
.fa {
  padding: 5px;
  text-align: center;
  text-decoration: none;
  margin: 5px 2px;
  border-radius: 50%;
}

.fa:hover {
  text-decoration: none;
  border-bottom: none;
}

.fa-bars {
  padding: 0;
  margin: 0;
  border-radius: 0;
}

.fa-twitter {
  background: #55ACEE;
  color: white;
  opacity: 75%;
}

.fa-twitter:hover {
  background: #55ACEE;
  color: white;
  opacity: 100%;
}

.fa-instagram {
  background: #125688;
  color: white;
  opacity: 75%;
}

.fa-instagram:hover {
  background: #125688;
  color: white;
  opacity: 100%;
}

.fa-youtube-play {
  color: #d82b22;
  opacity: 75%;
}

.fa-youtube-play:hover {
  color: #d82b22;
  opacity: 100%;
}

.embedded-youtube {
  display: flex;
  align-items: center;
  justify-content: center;
}

.embedded-video {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}

* {
  box-sizing: border-box;
}

.image-slider-container {
  max-width: 800px;
  position: relative;
  margin: auto;
}

.image-slider-image {
  display: none;
  background-color: lightgrey;
}

.image-slider-previous, .image-slider-next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.image-slider-next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.image-slider-previous:hover, .image-slider-next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.image-slider-text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

.image-slider-number {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

.image-slider-dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.image-active, .image-slider-dot:hover {
  background-color: #717171;
}

.image-fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes image-fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
@keyframes image-fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
.table-vertical {
  border-collapse: collapse;
}

.table-vertical th {
  border-right: 2px solid black;
  text-align: right;
  padding-right: 10px;
  font-weight: normal;
}

.table-vertical td {
  padding-left: 10px;
}

/* Adapted from https://www.w3schools.com/howto/howto_js_topnav_responsive.asp */
/* Top navigation bar */
.topnavbar {
  overflow: hidden;
  position: sticky;
  background-color: var(--primary);
  box-shadow: 0 3px 3px gray;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
}

/* Style the links inside the navigation bar */
.topnavbar a {
  display: block;
  float: left;
  padding: 14px 16px;
  border-radius: 2px;
  text-align: center;
  text-decoration: none;
  color: var(--font-color-dark);
}

/* Change the links in the navigation bar on hover */
.topnavbar a:hover {
  background-color: var(--primary-dark);
  box-shadow: 0 0 3px var(--primary-dark);
  color: var(--font-color-light);
  border-bottom: 0;
}

/* Active class for the currently selected page */
.topnavbar a.active {
  background-color: var(--complementory);
  color: var(--font-color-dark);
  box-shadow: 0 0 3px var(--complementory);
}

/* Hide the hamburger icon, when not on mobile or small screen */
.topnavbar .hamburger-icon {
  display: none;
}

/* Styles for small screens */
@media screen and (max-width: 480px) {
  /* Hide all links except the first link and show the hamburger icon to open the navigation bar */
  .topnavbar a:not(:first-child) {
    display: none;
  }
  .topnavbar button.hamburger-icon {
    float: right;
    display: flex;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    color: var(--font-color-light);
    padding: 5%;
    background-color: var(--primary-dark);
    box-shadow: -3px 0 3px var(--primary-dark);
  }
  .topnavbar .hamburger-icon .fa-bars {
    align-self: center;
  }
  .topnavbar.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}
.blog-post-entry .header .header-row {
  display: flex;
}

.blog-post-entry .header .header-row a.title {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--font-color-dark);
  border-bottom: 0;
  align-self: flex-start;
  font-weight: bold;
  font-size: larger;
}

.blog-post-entry .header .header-row .title span {
  border-bottom: 1px solid #bfbfbf;
}

.blog-post-entry .header .header-row a.title:hover {
  color: var(--primary-dark);
}

.blog-post-entry .header .header-row .empty-space {
  flex: 1 1 auto;
}

.blog-post-entry .header .header-row .category {
  align-self: flex-end;
  text-align: right;
}

.blog-post-entry .header .header-row .date {
  align-self: flex-end;
  text-align: right;
}

.blog-post-entry .read-more-container {
  display: flex;
  justify-content: center;
  padding: 5px;
}

.blog-post-entry .read-more-container a.read-more {
  border-bottom: 1px solid rgb(190, 190, 190);
  color: var(--font-color-dark);
}

.blog-post-entry .read-more-container a.read-more:hover {
  color: var(--primary-dark);
}

.sidebar {
  position: -webkit-sticky;
  position: sticky;
  width: 240px;
  height: 100%;
  z-index: 1;
  top: 80px;
  right: 0;
  background-color: #ebebeb;
  overflow-x: hidden;
  margin-left: 20px;
}

.sidebar-header {
  margin-top: 10px;
}

.sidebar .sidebar-item {
  padding-top: 10px;
  padding-bottom: 10px;
  float: left;
  width: 100%;
  display: block;
  font-size: 14px;
}

@media screen and (max-width: 480px) {
  .sidebar {
    display: none;
  }
}
:root {
  --primary: #1f94f3;
  --primary-light: #6dc4ff;
  --primary-dark: #0067c0;
  --complementory: #f37e1f;
  --font-color-light: #f2f2f2;
  --font-color-dark: #000000;
}

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