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

:root {
  --white: hsl(0, 0%, 100%);
  --light-gray: hsl(212, 45%, 89%);
  --grayish-blue: hsl(220, 15%, 55%);
  --dark-blue: hsl(218, 44%, 22%);
  --light-gray-shadow: #a8c3e0;
}

html {
  height: 100%;
}
body {
  background-color: var(--light-gray);
  font-family: "Outfit", sans-serif;
  height: 98%;
  margin: 0;
  display: flex;
  flex-direction: column;
}

#card {
  background-color: var(--white);
  width: 17rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  height: 27rem;
  margin: auto;
  text-align: center;
  border-radius: 1rem;
  box-shadow: 5px 5px 30px 5px var(--light-gray-shadow);
}

#card > img {
  width: 100%;
  border-radius: 1rem;
}

#card > h1 {
  font-size: 1.3rem;
  color: var(--dark-blue);
}

#card > p {
  color: var(--grayish-blue);
  font-size: 1rem;
  margin: 0;
}
