::-webkit-scrollbar {
  background: transparent;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-thumb {
  background: #d3d1cb;
}

::-webkit-scrollbar-track {
  background: #edece9;
}

body {
  background-image: url(https://nft-blog.pages.dev/assets/images/blog-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

header {
  height: 45px;
  background-color: white;
}

.hero {
  width: 100%;
  height: 302px;
  background-image: url(https://www.notion.so/image/https%3A%2F%2Fs3-us-west-2.amazonaws.com%2Fsecure.notion-static.com%2Fb0815a7b-58d6-42c5-bd4b-a5659f16b045%2Fopen-sea-banner.png?table=block&id=b3382af4-1273-46c7-9844-bc8498c1bc12&spaceId=6deb1114-b9ac-419c-ba7e-a1f2a7ae8cab&width=2000&userId=3b5379ed-2884-491b-8aec-8b2377a59868&cache=v2);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.bg-light-pink {
  background: rgba(249, 238, 243, 0.356);
}

.text-purple {
  color: #9065b0;
}

main {
  width: 710px;
  margin: 0 auto;
  max-width: 100%;
}

.page-subtitle {
  font-size: 28px;
  width: 100%;
  text-align: center;
  border-bottom: 3px solid #d44c47;
  line-height: 0.1em;
  margin: 10px 0 20px;
  color: #d44c47;
}

.page-subtitle span {
  font-weight: 500;
  background: #bce5d4;
  padding: 0 10px;
}

@media screen and (max-width: 992px) {
  .page-subtitle {
    font-size: 20px;
  }
}

@media screen and (max-width: 768px) {
  .page-subtitle {
    font-size: 16px;
    letter-spacing: 2px;
  }
}

@media screen and (max-width: 450px) {
  .page-subtitle {
    font-size: 14px;
    letter-spacing: 0px;
  }
}

@media screen and (max-width: 375px) {
  .page-subtitle {
    font-size: 12px;
  }
}

.link-1 {
  opacity: 0.7;
  color: #212527;
  text-decoration: none;
  border-bottom: 1px solid rgba(55, 53, 47, 0.4);
}

.link-1:hover {
  color: #212527;
}

.link-2 {
  padding: 2px 5px;
  border-radius: 4px;
  opacity: 0.7;
  color: #212527;
  text-decoration: none;
}

.link-2:hover {
  color: #212527;
  background-color: rgba(55, 53, 47, 0.2);
}

.sec-2 {
  position: relative;
  top: -65px;
}

/* Styles the thumbnail */
a.lightbox img {
  width: 624px;
  max-width: 100%;
  border: 3px solid white;
  -webkit-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
}

/* Styles the lightbox, removes it from sight and adds the fade-in transition */
.lightbox-target {
  position: fixed;
  top: -100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
  overflow: hidden;
}

/* Styles the lightbox image, centers it vertically and horizontally, adds the zoom-in transition and makes it responsive using a combination of margin and absolute positioning */
.lightbox-target img {
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  max-height: 0%;
  max-width: 0%;
  border: 3px solid white;
  -webkit-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

/* Styles the close link, adds the slide down transition */
a.lightbox-close {
  display: block;
  width: 50px;
  height: 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: white;
  color: black;
  text-decoration: none;
  position: absolute;
  top: -80px;
  right: 0;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

/* Provides part of the "X" to eliminate an image from the close link */
a.lightbox-close:before {
  content: "";
  display: block;
  height: 30px;
  width: 1px;
  background: black;
  position: absolute;
  left: 26px;
  top: 10px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* Provides part of the "X" to eliminate an image from the close link */
a.lightbox-close:after {
  content: "";
  display: block;
  height: 30px;
  width: 1px;
  background: black;
  position: absolute;
  left: 26px;
  top: 10px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* Uses the :target pseudo-class to perform the animations upon clicking the .lightbox-target anchor */
.lightbox-target:target {
  opacity: 1;
  top: 0;
  left: 0;
  bottom: 0;
}

.lightbox-target:target img {
  max-height: 100%;
  max-width: 100%;
}

.lightbox-target:target a.lightbox-close {
  top: 0px;
}
/*# sourceMappingURL=index.css.map */