.card {
    max-width: 320px;
    padding: 1.5rem;
    background: white;
    border-radius: 1rem;
    border: 1px solid black;
    box-shadow: 8px 8px 0 black;
    font-family: 'Figtree', sans-serif;
  }


  .image img {
    width: 100%;
    border-radius: 0.75rem;
    height: auto;
    margin-bottom: 12px;
  }


   .badge {
    background: hsl(47, 88%, 63%);
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 800;
    display: inline-block;
    margin-bottom:6px;
  }

   .date {
    font-size: 0.875rem;
  }

   h1 {
    font-size: 1.25rem;
    font-weight:bolder;
    margin: 0.5rem 0;
  }

  h1:hover {
    color: hsl(47, 88%, 63%);
    cursor: pointer;
  }


  .profile {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: bold;
  }

  .profile img {
    width: 32px;
    height: 32px;
  }


  body {
    background: hsl(47, 88%, 63%);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
  }
