@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
* {
  font-family: "Outfit", serif;
}
:root {
  --white: hsl(0, 0%, 100%);
  --slate-300: hsl(212, 45%, 89%);
  --slate-500: hsl(216, 15%, 48%);
  --slate-900: hsl(218, 44%, 22%);
}
body {
  background-color: var(--slate-300);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.card {
  display: flex;
  flex-direction: column;
  width: 320px;
  border-radius: 20px;
  background-color: var(--white);
  box-shadow: 0px 25px 25px rgba(0, 0, 0, 0.0477);
}
img {
  width: 288px;
  margin: 16px;
  border-radius: 10px;
}

.text {
  margin: 0 32px 32px;
  text-align: center;
}
h1 {
  font-size: 22px;
  font-weight: 700;
  color: var(--slate-900);
  line-height: 120%;
  margin-block: 8px;
}
p {
  font-size: 15px;
  font-weight: 400;
  color: var(--slate-500);
  line-height: 140%;
  letter-spacing: 0.2px;
  padding-block: 8px;
  margin: 0px;
}

/* Attribution */
.attribution {
  font-size: 11px;
  text-align: center;
  position: absolute;
  bottom: 20px;
}
.attribution a {
  color: hsl(228, 45%, 44%);
}
