/* Links */
.post-body a {
  text-decoration: none;
}
.post-body a:link {
  color: rgb(164, 164, 164);
  transition: 0.5s;
}
.post-body a:visited {
  color: rgb(164, 164, 164);
  transition: 0.5s;
}
.post-body a:hover {
  color: rgb(98, 98, 98);
  transition: 0.5s;
}

/* Text */
.blog-title {
  margin-top: 80px;
  margin-bottom: 30px;
  font-size: 50px;
  text-align: center;
  color: rgb(120, 120, 120);
}
.blog-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 40vw;
  margin: auto;
}
.post-container {
  padding: 20px 30px;
  transition-duration: 1s;
  border-radius: 10px;
}
.post-container:hover {
  background-color: rgb(219, 217, 217);
  cursor: pointer;
}
.post-date {
  font-size: 20px;
  color: rgb(180, 180, 180);
}
.post-title {
  font-size: 40px;
  color: rgb(100, 100, 100);
}
.post-subtitle {
  font-size: 25px;
  color: rgb(130, 130, 130);
}
.blog-container a {
  text-decoration: none;
}

.article-container {
  margin-top: 70px;
  margin-left: auto;
  margin-right: auto;
  padding: 30px;
  width: 50vw;
}
.article-title {
  font-size: 70px;
  color: rgb(90, 90, 90);
}
.post-body {
  margin-top: 20px;
  font-size: 20px;
  color: rgb(100, 100, 100);
  line-height: 30px;
}
.post-body p {
  margin-bottom: 40px;
}
.post-body h1 {
  margin-bottom: 15px;
}
.post-body ol {
  margin-left: 50px;
  margin-bottom: 40px;
}
.time-capsule {
  width: 100%;
  border: 2px solid rgb(90, 90, 90);
  padding: 30px;
}
.time-capsule p:nth-child(1) {
  margin-bottom: 20px;
}
.time-capsule p:nth-child(2) {
  margin-bottom: 0px;
}

.blog-footer {
  display: flex;
  flex-direction: column;
  width: 40vw;
  align-items: center;
  margin: auto;
}
.footer-line {
  border-top: 1px solid rgb(150, 150, 150);
  width: 100%;
  margin-top: 50px;
}
.blog-footer p {
  margin: 30px 0px;
  color: rgb(130, 130, 130);
}

blockquote {
  border-left: 3px solid #ccc;
  margin: 1.5em 10px;
  padding: 0.5em 10px;
}
blockquote p {
  display: inline-block;
}

/* Image Gallery */
.gallery-container {
  width: 100%;
  margin: auto;
  overflow-x: hidden;
  margin-bottom: 50px;
  position: relative;
}
.gallery {
  width: 400%;
  display: flex;
  transition: margin-left 0.5s ease;
}
.gal-image {
  width: 25%;
}
.gal-image img {
  width: 100%;
  margin: auto;
}

.gal-nav {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
}
.arrow {
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  pointer-events: auto;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.arrow:hover {
  background: rgba(0, 0, 0, 0.8);
}
.arrow.disabled {
  visibility: hidden;
}

.arrow-left-symbol {
  border: solid white;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}
.arrow-right-symbol {
  border: solid white;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
