.display-header {
  overflow: hidden;
}
/* Navigation bar */
.nav {
  padding: 2rem;
  background-color: #181818bd;
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo a {
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  font-size: 1.2rem;
  color: #578d05;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}
.logo .creatives {
  color: rgb(174, 149, 5);
}
.logo img {
  width: 100px;
  filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.605));
}
.link {
  display: inline-block;
}
.link a {
  cursor: pointer;
  text-decoration: none;
  font-size: 1rem;
  color: white;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}
.link a:hover {
  color: rgb(255, 255, 255);
}


/* Title, writer, and date */

.sub {
  background-color: rgba(24, 24, 24, 0.743);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  flex-direction: column;
  padding: 10rem 0;
}
.sub h1 {
  width: 60%;
  text-align: center;
  font-weight: 700;
  font-size: 2.4rem;
  letter-spacing: 0.2rem;
  color: white;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  margin-bottom: 2rem;
}
.sub span {
  letter-spacing: 0.1rem;
  font-size: 1.2rem;
  color: white;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}



/* Main Content */

.post-body {
  max-width: 700px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 7rem;
}
.post-body p {
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  font-size: 1.2rem;
  line-height: 1.7em;
  
}
.darkText{
  color: white;
}


/* Comment Section*/

.comment {
  max-width: 700px;
  margin: auto;
  justify-content: center;
  align-items: center;
  margin-top: 4rem;
  border-top: 1px solid #c9c8c8;
  padding: 1rem;
}
.comment p {
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  line-height: 1.7em;
  font-size: 1.1rem;
  
}
.comment a {
  cursor: pointer;
  color: var(--fabcolor);
}
.comment h3 {
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  line-height: 1.7em;
  font-size: 1.2rem;
  color: var(--headclr);
}
.comment ul {
  list-style: none;
  border: 1px solid #e7e7e7;
  border-radius: 0.5rem;
  padding: .5rem;
  margin-bottom: 1.5rem;
}
.comment li {
  font-size: 1rem;
  border-radius: 0.5rem;
  padding: 1rem;
  border: 1px solid #e7e7e7;
  margin: .7rem;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}
.comment strong {
  color: var(--fabcolor);
}
.commentForm {
  width: 100%;
}
.commentForm textarea {
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  line-height: 1.7em;
  font-size: 1.1rem;
  padding: 0.5rem;
  width: 100%;
  border-radius: 0.5rem;
  color: var(--color);
  background: var(--navbackground);
  border: var(--border);
}
.commentForm button {
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  font-size: 1rem;
  padding: 0.5rem;
  cursor: pointer;
  background: #507814;
  color: white;
  border-radius: 0.3rem;
  border: none;
  margin: 1rem 0;
}
@media screen and (max-width: 800px) {
  .nav {
    justify-content: space-between;
    padding: 1.5rem;
  }
  
  .sub h1 {
    font-size: 2rem;
    width: 80%;
  }
  .sub span{
    font-size: 1rem;
  }
  .post-body, .comment {
    width: 85%;
    
  }
  .post-body p{
    font-size: 1rem;
  }
  .comment li, .commentForm textarea {
    font-size: 1rem;
  }
  .commentForm button {
    font-size: .8rem;
  }
  .logo a:nth-child(even) {
    display: none;
  }
  .link a{
    font-size: .9rem;
  }
}
