header .content .link {
  color: black !important;
}

#blog_post {
  margin-top: 10rem;

  .content {
    .title {
      font-size: 5rem;
      align-items: center;
      gap: 1rem;
      display: flex;
      margin: 0;
      margin-bottom: 3rem;
      
      img {
        height: 100%;
        width: auto;
      }
    }

    .post {
      margin-top: 3rem;
      border: 2px solid black;
      padding: 2rem 7.5%;

      .post__author {
        display: flex;
        align-items: center;
        gap: 1rem;

        img {
          width: 1.5rem;
          height: 1.5rem;
          background-color: #666;
          border-radius: 100vmax;
        }
      }

      h1.post__title {
        font-size: 4rem;
      }

      .post__content {
        --margin: 2rem;
        line-height: 1.5rem;
        text-align: justify;

        a {
          color: #00005f;
          font-weight: bold;
        }

        p {
          margin-block-start: var(--margin);
          margin-block-end: var(--margin);
          font-weight: 400;
        }
      }
    }
  }
}