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

* {
  margin: 0;
  padding: 0;
  border: 0;
}

html {
  box-sizing: border-box;
  font-size: 62.5%;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;

  font-family: "Outfit", sans-serif;
  height: 100vh;
  background-color: var(--light-gray);
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;

  height: 38rem;
  width: 23rem;
  text-align: center;
  background-color: var(--white);
  padding: 1.2rem;
  border-radius: 1.6rem;
}

.qr-code {
  height: 23rem;
  width: 23rem;
  border-radius: 0.8rem;
}

.title {
  font-size: 1.8rem;
  color: var(--dark-blue);
}

.description {
  color: var(--grayish-blue);
  font-size: 1.3rem;
}
