@import url(font.css);
:root {
  --color-slate-900: hsl(218, 44%, 22%);
  --color-slate-500: hsl(216, 15%, 48%);
  --color-slate-300: hsl(212, 45%, 89%);
  --color-white: hsl(0, 0%, 100%);
}

*,
*::after,
*::before {
  box-sizing: border-box;
  margin: 0 auto;
}
body {
  font-family: "Outfit", sans-serif;
  background: var(--color-slate-300);
}
.cards {
  margin-block: 156.5px;
  width: 320px;
  height: auto;
  padding: 16px 16px 40px 16px;
  background: var(--color-white);
  border-radius: 20px;
  box-shadow: 0px 25px 25px rgba(217, 0%, 0%, 0.95%);
}
.title {
  width: 256px;
  padding-top: 24px;
  padding-inline: auto;
}
.title h1 {
  font-size: var(--text-preset-1);
  text-align: center;
  font-weight: 700;
  padding-bottom: 16px;
}
.title p {
  text-align: center;
  font-size: var(--text-preset-2);
}
img {
  display: block;
  width: 288px;
  height: auto;
  border-radius: 10px;
}
