html {
    box-sizing: border-box;
    font-size: 15px;
  }
  *,
  *:before,
  *:after {
    box-sizing: inherit;
  }

body {
  margin: 0;
  padding: 0;
  background-color: hsl(212, 45%, 89%);
  min-height: 100vh;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
    
}

.container {
  width: 300px;
  display: flex;
  flex-direction: column;

  padding: 15px;
  margin: auto auto;
  background-color: #fff;
  border-radius: 15px;
}

.container h1 {
  font-family: "Outfit";
  font-size: 1.4em;
  font-weight: 700;
  margin: 20px 10px 0 10px;
  text-align: center;
}

.container p {
  font-family: "Outfit";
  font-weight: 400;
  margin: 20px 10px;
  text-align: center;
  color: hsl(220, 15%, 55%);
}

.qr-code {
  border-radius: 15px;
}

.attribution {
  font-family: "Outfit";
  font-weight: 400;
}