* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

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

body {
  background-color: var(--slate-300);
  font-family: 'Outfit', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.card {
  width: 320px;
  background-color: var(--white);
  border-radius: 20px;
  box-shadow: 0 25px 25px 0 var(--shadow);
  overflow: hidden;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 16px;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  margin: 0 16px;
}

.card-img {
  width: 100%;
  border-radius: 10px;
}

.card-title {
  font-weight: 700;
  color: var(--slate-900);
  font-size: 22px;
  line-height: 120%;
  text-align: center;
  padding-left: 16px;
  padding-right: 16px;
  margin-top: 24px;
  margin-bottom: 0px;
}

.card-description {
  font-weight: 400;
  color: var(--slate-500);
  font-size: 15px;
  line-height: 140%;
  text-align: center;
  letter-spacing: 0.2px;
  padding-left: 16px;
  padding-right: 16px;
  margin-top: 16px;
  margin-bottom: 0px;
}