  @font-face {
    font-family: "Figtree";
    src: url("../assets/fonts/Figtree-VariableFont_wght.ttf") format("truetype");
    font-weight: 300 900;
    font-style: normal;
    font-display: swap;
  }

  :root {
    --yellow: #f4d04e;
    --grey-950: #111111;
    --grey-500: #6b6b6b;
  }

  img {
    max-width: 100%;
    display: block;
  }

  .card__title {
    font-weight: 700;
    font-size: clamp(1.25rem, 1rem + 1vw, 1.5rem);
    line-height: 1.3;
    transition: color 0.1s ease-in;
  }

  .card__title:hover {
    color: var(--yellow);
    cursor: pointer;
  }

  body {
    font-family: "Figtree", system-ui, sans-serif;
    background-color: var(--yellow);
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
  }

  .card {
    background-color: white;
    padding: clamp(1rem, 3vw, 1.5rem);
    width: 100%;
    max-width: 24rem;
    border-radius: 1.25rem;
    border: 1px solid var(--grey-950);
    box-shadow: 0.5rem 0.5rem 0 0 var(--grey-950);
    transition: box-shadow 0.1s ease-in;
  }

  .card:hover {
    box-shadow: 0.75rem 0.75rem 0 0 var(--grey-950);
  }

  .card--featured {
    background-color: var(--grey-950);
    color: white;
    border: 1px solid white;
  }

  .card--featured .card__description {
    color: white;
  }

  .alert {

    background-color: var(--yellow);
    color: var(--grey-950);
    font-weight: 900;
    font-size: 0.875rem;
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    width: fit-content;
  }

  .card__header {
    display: flex;
    flex-direction: column;
    gap: clamp(0.625rem, 2vw, 0.75rem);
    margin: clamp(1rem, 3vw, 1.5rem) 0;
  }

  .card__description {
    color: var(--grey-500);
  }

  .card__footer {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    font-weight: 800;
    font-size: 0.8rem;
  }

  .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .userpic {
    border-radius: 50%;
  }

  @media (max-width: 1024px) {
    .container {
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      gap: 2rem;
    }
  }