@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%);
}

body {
  background-color: var(--light-gray);
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 15px;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  padding: 10px;
}

.card {
  max-width: 280px;
  background-color: var(--white);
  border-radius: 15px;
  padding: 15px;
  text-align: center;
  margin: 10px;
}

.qr-image {
  max-width: 280px;
  border-radius: 10px;
}

.title {
  color: var(--dark-blue);
}

.description {
  padding: 0px 10px;
  color: var(--grayish-blue);
  line-height: 20px;
}

.attribution {
  color: var(--grayish-blue);
  text-align: center;
}