:root {
  --bg-color: #D5E1EF;
  --card-color: hsl(0, 0%, 100%);
  --header-color: hsl(218, 44%, 22%); /* Slate 900 */
  --text-color: hsl(216, 15%, 48%); /* Slate 500 */
}
body {
  background-color: var(--bg-color);
  font-family: Outfit;
  font-size: 0.9375rem;
  color: var(--text-color);
}
.container {
  display: flex;
  height: 100vh;
  justify-content: center;
  align-items: center;
}
#qr-code-card {
  display: inline-block;
  padding: 1rem;
  background-color: var(--card-color);
  border-radius: 1.25rem;
  width: auto;
  max-width: 18rem;
  text-align: center;
}
#qr-code {
  border-radius: 0.625rem;
}
#qr-code-desc {
  padding: 1rem;
}
h1 {
  margin-top: 0.3125rem;
  font-size: 1.375rem;
  color: var(--header-color);
}
