* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --background-color: hsl(212, 45%, 89%);
  --card-background-color: hsl(0, 0%, 100%);
  --title-color: hsl(218, 44%, 22%);
  --description-color: hsl(216, 15%, 48%);
  --font: "Outfit", sans-serif;
}

body {
  font-family: var(--font);
  background-color: var(--background-color);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.container {
  background-color: var(--card-background-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 320px;
  height: 490px;
  border-radius: 20px;
  padding: 20px;
}

.qr-image {
  width: 288px;
}

.title {
  color: var(--title-color);
  font-weight: 700;
  font-size: 22px;
  margin: 16px 0;
  text-align: center;
}

.description {
  color: var(--description-color);
  font-weight: 400;
    font-size: 15px;

  text-align: center;
}
