@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%);
  --wght-400: 400;
  --wght-700: 700;
}

* {
  box-sizing: inherit;
}

img {
  width: 100%;
  display: block;
}

body {
  font-family: 'Outfit', sans-serif;
  box-sizing: border-box;
  margin: 0;
  font-weight: var(--wght-400);
  color: var(--grayish-blue);
  background: var(--light-gray);
  height: 100dvh;
  font-size: 15px;
}

.container {
  width: 100%;
  max-width: 300px;
  height: inherit;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.qrcode,
.qrcode__img img {
  border-radius: 20px;
}

.qrcode {
  background: var(--white);
  padding: 20px;
}

.qrcode__text {
  text-align: center;
}

.qrcode__text h1 {
  font-size: 20px;
  font-weight: var(--wght-700);
  color: var(--dark-blue);
}
