:root {
  --white: hsl(0, 0%, 100%);
  --slate-300: hsl(212, 45%, 89%);
  --slate-500: hsl(216, 15%, 48%);
  --slate-900: hsl(218, 44%, 22%);
  --card-shadow: 0 24px 24px hsla(0, 0%, 0%, 0.05);
  font-size: 93.75%; /* 1rem = 15px */
}

body {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  background-color: var(--slate-300);

  display: grid;
  place-items: center;
  height: 100svh;
  box-sizing: border-box;
}

article {
  width: 320px;
  /* height: 500px; */
  padding: 16px;
  background-color: var(--white);
  border-radius: 20px;
  box-shadow: var(--card-shadow)
}

img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 22px;
}

h1 {
  text-align: center;
  color: var(--slate-900);
  font-size: 1.5rem;
  margin: 0;
  margin-bottom: 16px;
}

p {
  text-align: center;
  color: var(--slate-500);
  line-height: 140%;
  letter-spacing: 0.02rem;
  margin: 0;
  margin-bottom: 24px;
}

.texts {
  padding-left: 16px;
  padding-right: 16px;
}
