* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --white: hsl(0, 0%, 100%);
  --slate-300: hsl(212, 45%, 89%);
  --slate-500: hsl(216, 15%, 48%);
  --slate-900: hsl(218, 44%, 22%);
}

body {
  background-color: var(--slate-300);
  padding: 0 27.5px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100dvh;
  font-family: "Outfit";
}

.card {
  background-color: var(--white);
  border-radius: 20px;
  padding: 16px 16px 40px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 320px;
  align-items: center;
  gap: 24px;
  box-shadow: 0 25px 25px 0 rgba(0, 0, 0, 0.0477);
  .card__img {
    width: 100%;
    height: 288px;
    object-fit: cover;
    border-radius: 10px;
  }
  .card__body {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0 16px;
    gap: 16px;
    .card__title {
      color: var(--slate-900);
      font-size: 22px;
      font-weight: 700;
      line-height: 120%;
      text-align: center;
    }
    .card__description {
      color: var(--slate-500);
      font-size: 15px;
      font-weight: 400;
      line-height: 140%;
      letter-spacing: 0.2px;
      text-align: center;
    }
  }
}
