@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");

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

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

html,
body {
  height: 100%;
}

body {
  background-color: #d5e1ef;
  font-size: 15px;
  font-family: "Outfit";
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.wrapper {
  min-height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card {
  padding: 1em;
  background-color: white;
  min-width: 300px;
  width: 300px;
  border-radius: 8px;
  box-shadow: 5px 5px 10px 5px var(--clr-slate-500);
}

.card > * + * {
  margin-top: 1em;
}

.card__image {
  border-radius: 6px;
}

.card__title,
.card__description {
  padding-inline: 1rem;
  text-align: center;
}

.card__title {
  font-weight: 700;
  color: var(--clr-slate-900);
}

.card__description {
  font-size: 0.85em;
  color: var(--clr-slate-500);
  line-height: 1.6;
}
