* {
  box-sizing: border-box;
  transition: 0.5s;
}

html {
	  scroll-behavior: smooth;
	  font-family: Outfit;
}

main {
  height: 100vh;
  width: 100vw;
  background-color: hsl(212, 45%, 89%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

#container {
  width: 300px;
  height: 500px;
  border-radius: 15px;
  background-color: hsl(0, 0%, 100%);
  margin: auto;
  padding: 15px;
  box-shadow: 0px 0px 30px 4px rgba(23, 22, 22, 0.3);
}

#qr-image {
  width: 100%;
  height: 60%;
  background: url(image-qr-code.png);
  background-size: cover;
  margin: auto;
  background-position: center;
  border-radius: 15px;
}

p {
  font-size: 15px;
  text-align: center;
  color: hsl(218, 44%, 22%);
  padding-left: 10px;
  padding-right: 10px;
}

p:first-of-type {
  font-weight: 700;
  font-size: 22px;
}

p:last-of-type {
  font-weight: 400;
  color: hsl(220, 15%, 55%);
}

.attribution {
  font-size: 11px;
  text-align: center;
}

.attribution a {
  color: hsl(228, 45%, 44%);
}

