a {
  color: initial;
  text-decoration: none;
}
a:hover {
  color: initial;
}
*, ::after, ::before {
  box-sizing: initial;
}
hr {
  margin: initial;
  color: initial;
  background-color: initial;
  border: initial;
  border-style: inset;
  border-width: 1px;
}
span.red {
  color: #e94444;
}
hr.dashed-green {
  margin: 1em;
  width: 30px;
  border-top: 5px dashed #1ac937;
  opacity: 0.25;
}
* {
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background-color: white;
  color: black;
}
.inner {
  margin: 0 auto;
  max-width: 1100px;
  width: 100%;
}
header nav > ul {
  list-style: none;
  display: flex;
  flex-direction: row;
}
.anker {
  padding-top: 95px;
  margin-top: -95px;
}
[data-scrolled="true"] header {
  background-color: rgba(255, 255, 255, 0.8);
  transition: 0.5s;
}
header {
  background-color: rgba(255, 255, 255, 0.2);
  color: #333;
  border-bottom: 1px solid #aaa;
  transition: 0.5s;
  position: fixed;
  z-index: 1000;
  width: 100%;
  padding-top: 15px;
  height: 60px;
  transition: 0.3s;
}
header .inner {
  height: 100%;
  display: flex;
  flex-direction: row;
}
header nav {
  margin-left: auto;
  font-size: 30px;
}
header nav li {
  margin: 0.5em;
  margin-top: 0;
}
header a:link {
  text-decoration: none;
  color: #333;
  position: relative;
  display: inline-block;
}
header a:link::after {
  position: absolute;
  bottom: 2px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #333;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
header a:link:hover::after {
  bottom: -4px;
  opacity: 1;
  visibility: visible;
}
header a:visited {
  text-decoration: none;
  color: #333;
}
#site-title {
  height: 100%;
  font-size: 30px;
  width: 30%;
}
#site-title > img {
  height: 80%;
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
footer {
  margin-top: auto;
  width: 100%;
  text-align: center;
  padding: 50px 0;
  background-color: #ddd;
  color: #000;
}
.block {
  text-align: center;
  margin-bottom: 5em;
  z-index: 100;
}
.block__title {
  display: flex;
  flex-direction: column;
  margin-bottom: 2em;
}
.block__title h2 {
  font-size: 2em;
}
.block__title div {
  display: flex;
  align-items: center;
  flex-direction: row;
  margin-left: auto;
  margin-right: auto;
}
.post_list__item {
  -webkit-box-shadow: 0 0 8px 2px rgba(0, 0, 0, 0.133);
  box-shadow: 0 0 8px 2px rgba(0, 0, 0, 0.133);
  border-radius: 4px;
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1em;
  margin: 1em;
  width: 300px;
  height: 300px;
}
.post_list__item-thumbnail {
  width: 80%;
  height: 70%;
}
.post_list__item-thumbnail > img {
  width: 100%;
  height: 100%;
}
.post_list__item-date {
  margin-left: auto;
  margin-top: 1em;
  font-size: 0.8em;
}
.post_list__item:hover {
  -webkit-box-shadow: 0 0 8px 2px rgba(0, 0, 0, 0.333);
  box-shadow: 0 0 8px 2px rgba(0, 0, 0, 0.333);
}
.post_list__item:hover .post_list__item-thumbnail {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  color: #565656;
  cursor: pointer;
  opacity: 0.6;
  outline: 0;
}
.post_list__item:hover .post_list__item-title {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  text-decoration: underline;
}
.eye-catch {
  max-height: 100vh;
}
.eye-catch img {
  max-height: 100vh;
  width: 100%;
  object-fit: cover;
  -webkit-filter: grayscale(100%) opacity(25%);
  -moz-filter: grayscale(100%) opacity(25%);
  -ms-filter: grayscale(100%) opacity(25%);
  -o-filter: grayscale(100%) opacity(25%);
  filter: grayscale(100%) opacity(25%);
}
.eye-catch p {
  position: absolute;
  color: white;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 0;
  font-size: 10vh;
  text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.6);
}
.single {
  display: flex;
  flex-direction: row;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 5em;
  z-index: 100;
  padding-top: 95px;
}
.single .date {
  margin-bottom: 3em;
  color: #aaa;
}
.single .sidebar, .single main {
  padding: 1em;
}
.single main {
  width: 70%;
}
#policy {
  position: relative;
  height: 500px;
  max-width: initial;
  font-size: 1.5em;
  font-weight: 700;
  color: #444;
  padding-top: 145px;
  margin-top: -30px;
}
#policy h2 {
  font-weight: 700;
}
#policy .content p {
  margin-bottom: 2em;
}
#canvas-container {
  position: absolute;
  background-color: lightsteelblue;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
