      #blog {
        width: 289px;
        height: 236px;
        overflow: auto;
        scrollbar-width: none;
        display: grid;
        gap: 1px;
        align-content: flex-start;
        justify-items: start;
      }

      .blog-post {
        background: white;
        width: inherit;
        height: auto;
        display: flex;
        flex-direction: column;
        border-radius: 5px;
      }

      .post-title {
        margin: 10px 0px 0px 5px;
        font-weight: 700;
        color: #fda7bf;
        font-size: 12px;
      }

      .post-date {
        margin: 0px 3px 3px 0px;
        font-weight: 700;
        font-size: 8px;
        align-self: self-end;
        color: #fda7bf;
      }

      .post-image {
        margin: 5px 5px;
      }

      .post-text {
        margin: 6px 0px 5px 5px;
        color: #904c82;
        width: 279px;
      }

      a {
        color: #fda7bf;
      }