/* 1. Use a more-intuitive box-sizing model */
*, *::before, *::after {
    box-sizing: border-box;
  }
  
  /* 2. Remove default margin */
  * {
    margin: 0;
  }
  
  body {
    /* 3. Add accessible line-height */
    line-height: 1.5;
    /* 4. Improve text rendering */
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    background: var(--yellow);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-family: "Figtree", serif;

    
  }
  
  /* 5. Improve media defaults */
  img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: .8rem;
  }
  
  /* 6. Inherit fonts for form controls */
  input, button, textarea, select {
    font: inherit;
  }
  
  /* 7. Avoid text overflows */
  p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
  }
  
  /* 8. Improve line wrapping */
  p {
    text-wrap: pretty;
  }
  h1, h2, h3, h4, h5, h6 {
    text-wrap: balance;
  }
  :root {
    --yellow: hsl(47, 88%, 63%);
    --white: hsl(0, 0%, 100%);
    --gray-500: hsl(0, 0%, 42%);
    --gray-950: hsl(0, 0%, 7%);
    --regular: 500;
    --bold: 800;
  }
  button {
    background: var(--yellow);
    max-width: 90px;
    border: none;
    border-radius: 0.2rem;
    font-weight: 600;
    padding: .1rem .7rem;
  }
  .blog-wraper {
    max-width: 324px;
    height: auto;
    background: var(--white);
    padding: 1.4rem;
    border: 0.1px solid black;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 10px 10px;
  }
  div {
    display: flex;
    align-items: center;
    gap: 1.1rem;
  }
  article h3 {
    font-weight: 800;
  }
  div p {
    font-weight: 600;
  }
  article h3 {
    font-size: 23px;
    font-weight: 800;
  }
  article h3:hover {
    color: var(--yellow);
    cursor: pointer;
  }
  .pub-date {
    font-size: 14px;
    font-weight: 500;
  }
  .pd-detail {
    color: var(--gray-500);
    font-size: 15px;
    line-height: 1.6;
  }