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

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100vw;
  height: 100vh;
  font-size: 1.5rem;
  font-family: "Outfit", sans-serif;
  color: hsl(220, 15%, 55%);
  background-color: hsl(212, 45%, 89%);
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 32rem;
  height: 50rem;
  overflow: hidden;
  border-radius: 1.5rem;
  background-color: hsl(0, 0%, 100%);
  box-shadow: 0rem 0rem 16rem rgba(112, 112, 112, 0.15);
}
.card .qr {
  width: 28.5rem;
  height: 28.5rem;
  margin: 1.5rem;
  overflow: hidden;
  border-radius: 1.5rem;
}
.card .qr img {
  width: 28.5rem;
}
.card .text {
  margin: 0rem 3rem;
}
.card .text h1 {
  margin: 1rem 0rem;
  font-size: 22px;
  color: hsl(218, 44%, 22%);
}
.card .text p {
  margin: 1rem 0rem;
}

.attribution {
  margin: 1rem;
  font-size: 1.1rem;
}
.attribution a {
  color: hsl(228, 45%, 44%);
}/*# sourceMappingURL=style.css.map */