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

main {
  background-color: var(--slate-300);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.content {
  background-color: var(--white);
  border-radius: 20px;
  box-shadow: 0px 25px 25px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  padding: var(--spacing-200);
  padding-bottom: var(--spacing-500);
  gap: var(--spacing-300);
  max-width: 320px;
  max-height: 500px;
}
img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.text {
  font-family: "Outfit", sans-serif;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-200);
  padding-inline: var(--spacing-200);
}

.text h1 {
  color: var(--slate-900);
  font-size: 22px;
  line-height: 120%;
  letter-spacing: 0px;
  font-weight: 700;
  margin: 0;
}

.text p {
  color: var(--slate-500);
  font-size: 15px;
  line-height: 140%;
  letter-spacing: 0.2px;
  margin: 0;
}
