@font-face {
  font-family: "Papyrus";
  src: local("Papyrus"), url(/fonts/papyrus.woff) format("woff");
  font-display: swap;
}
#post a:hover {
  opacity: 0.7;
}

.contact-me {
  position: relative;
  z-index: 2;
}

.pswp img {
  background-color: #fff;
}

#footer {
  height: 200px;
  margin-top: -120px;
  position: relative;
  display: flex;
  align-items: flex-end;
}
#footer:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: -1px;
  left: 0;
  background-image: url("https://r2-assets.thelynan.com/gallery/IMG_0606_cb5a32b0f9.jpg");
  background-size: cover;
  background-position: 10% 10%;
  opacity: 0.3;
  z-index: 0;
}
#footer .footerInner {
  position: relative;
  border-top: none;
  width: 100%;
  z-index: 1;
  padding: min(3vw, 24px) 0;
  justify-content: center;
}
#footer .footerInner .footerItem {
  font-size: 13px;
  color: #fff;
  text-shadow: rgba(0, 0, 0, 0.8) 0px 4px 14px;
}
#footer .footerInner .footerItem:not(:first-child) {
  display: none;
}
#footer .footerInner .footerItem:not(:last-child)::after {
  background-color: #fff;
  display: none;
}
#footer::before {
  content: "";
  display: block;
  width: 100%;
  height: 80%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(to bottom, rgb(255, 255, 255), rgba(255, 255, 255, 0));
  z-index: 1;
}

.post-nav-wrap {
  display: none;
}

.post-title {
  display: none !important;
}

.post-meta {
  display: none !important;
}

.post-cover-img-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 35%;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgb(255, 255, 255));
}

.about-container {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}
.about-container .description-wrap {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}
.about-container .description {
  text-align: left;
}
.about-container .skill-list {
  padding-left: 20px;
  margin-top: 0;
}
.about-container img {
  border-radius: 50%;
  width: 250px;
  height: 250px;
  object-fit: cover;
  object-position: center;
  flex: 0 0 auto;
}

.container section {
  margin-top: 30px;
}
.container section h2 {
  font-size: 32px;
  font-weight: 500;
  margin-top: 0;
  color: #333;
}

#about {
  margin-top: -1.3rem;
}

.work-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.work-container .lazyload-outer-wrap {
  margin: 0;
}
.work-container .lazyload-outer-wrap .caption {
  display: none;
}

.work-item {
  width: calc(33.33% - 20px);
  margin-bottom: 15px;
}
.work-item .img-wrap {
  box-sizing: border-box;
  padding: 15px;
  border: solid 1px #f3f3f3;
  margin-bottom: 10px;
  border-radius: 2px;
  aspect-ratio: 1;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
}
.work-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 2px;
  display: block;
}
.work-item h3 {
  margin-top: 0;
  font-weight: 500;
}
.work-item p {
  margin: 0;
}

#skills {
  overflow: hidden;
}

.skills-warp {
  width: calc(100% + 30px);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  box-sizing: border-box;
  margin-right: -30px;
}
.skills-warp .skill-item {
  font-weight: 600;
  font-size: 16px;
  display: inline-block;
  margin-bottom: 15px;
  margin-right: 30px;
}
.skills-warp::after {
  content: "";
  flex: auto;
}

@media (max-width: 750px) {
  .about-container img {
    width: 170px;
    height: 170px;
  }
}
@media (max-width: 600px) {
  .container section {
    margin-top: 20px;
  }
  .about-container {
    flex-wrap: wrap;
  }
  .about-container .description-wrap {
    margin-left: 0;
  }
  .about-container .description-wrap p {
    color: #222;
    text-shadow: 0 0 20px #fff;
    font-size: 15px;
  }
  .about-container img {
    width: 150px;
    height: 150px;
  }
  .about-container .description {
    margin-left: 0;
  }
  .work-container .work-item {
    width: 100%;
    margin-bottom: 30px;
  }
  .work-container .img-wrap {
    aspect-ratio: auto;
  }
}
.email-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-size: cover;
  background-image: url("/img/icons/email.svg");
  vertical-align: middle;
}

.github-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-size: cover;
  background-image: url("/img/icons/github.svg");
  vertical-align: middle;
}