@media (min-width: 500px) {
  main .title {
    font-size: 32px;
    line-height: 38px;
  }
  .share {
    float: left !important;
    margin-top: 30px;
  }
}
@media (min-width: 768px) {
  main .title {
    font-size: 56px;
    line-height: 68px;
  }
  .share {
    float: right !important;
    margin-top: 0;
  }
}
main {
  margin-top: 110px;
}
main .address span {
  border: 1px solid rgb(55, 55, 55);
  border-radius: 22px;
  font-size: 14px;
  background-color: rgba(10, 10, 10, 0.5);
}
main .title {
  font-weight: 600;
}
main .date {
  color: rgb(202, 202, 202);
}
main .blogContent p {
  color: rgb(202, 202, 202);
}
main .blogContent h3 {
  font-weight: 600;
}
main .blogContent ul li {
  list-style: circle;
  color: rgb(202, 202, 202);
}
main .blogContent .lastParagraph {
  border-bottom: 1px solid rgb(55, 55, 55);
}
main .blogContent .tags {
  border-bottom: 1px solid rgb(55, 55, 55);
}
main .blogContent .tags .tag {
  font-size: 14px;
  background-color: #0f0f0f;
  border: 1px solid rgb(55, 55, 55);
  padding: 9px 18px;
  border-radius: 22px;
  transition: all 0.3s 0.1s ease;
}
main .blogContent .tags .tag:hover {
  background-color: #c49b66;
  color: black;
}
main .blogContent i {
  background-color: #161616;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s 0.1s ease;
}
main .blogContent i:hover {
  color: black;
  background-color: #c49b66;
}
main .writer {
  background-color: #0f0f0f;
  border-radius: 4px;
}
main .writer div img {
  border-radius: 12px;
}
main .writer div h4 {
  font-weight: 600;
}
main .writer div p {
  color: rgb(202, 202, 202);
}
main .otherPosts div {
  overflow: hidden;
}
main .otherPosts div img {
  opacity: 0.3;
}
main .otherPosts div .overlay {
  width: 100% !important;
  top: 36%;
}
main .otherPosts div .overlay span {
  color: #c49b66;
  font-size: 18px;
}
main .otherPosts div .overlay i {
  color: #c49b66;
  font-size: 8px;
  vertical-align: 3px;
}
main .otherPosts div .overlay p {
  font-weight: 600;
}
main .otherPosts .prevPost .overlay {
  left: 40px;
  padding-right: 4.5rem;
}
main .otherPosts .prevPost .overlay:hover i {
  animation: leftRight 1s infinite;
}
main .otherPosts .nextPost .overlay {
  padding-left: 4.5rem;
  right: 40px;
  text-align: right;
}
main .otherPosts .nextPost .overlay:hover i {
  animation: rightLeft 1s infinite;
}
@keyframes leftRight {
  0% {
    transform: translate(0);
  }
  50% {
    transform: translate(-4px);
  }
  100% {
    transform: translate(0);
  }
}
@keyframes rightLeft {
  0% {
    transform: translate(0);
  }
  50% {
    transform: translate(4px);
  }
  100% {
    transform: translate(0);
  }
}

#comments .row .commentsTitle p {
  font-size: 24px;
  font-weight: 600;
}
#comments .row .commentWrapper {
  border-bottom: 1px solid rgb(45, 45, 45);
}
#comments .row .commentWrapper .userProfile img {
  width: 65%;
}
#comments .row .commentWrapper .commentContent .userName {
  font-size: 22px;
  font-weight: 600;
}
#comments .row .commentWrapper .commentContent .userComment {
  color: rgb(202, 202, 202);
}
#comments .row .commentWrapper .replayBtn a {
  transition: all 0.4s;
  border-radius: 24px;
  border: 1px solid rgb(55, 55, 55);
  color: white;
  font-size: 12px;
  font-weight: 600;
}
#comments .row .commentWrapper .replayBtn a:hover {
  color: black;
  background-color: #c49b66;
}
#comments .row .commentRespond {
  border-bottom: none;
  padding-left: 35px;
}/*# sourceMappingURL=blog.css.map */