@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');


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

html{
  /* 62.5% = 10px */
  font-size: 62.5%;
}

body{
  background-color: hsl(212, 45%, 89%);
  font-family: "Outfit", sans-serif;
}

.main-container{
  min-height: 98vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.qr-code-card{
  background-color: hsl(0, 0%, 100%);
  padding: 10px;
  border-radius: 10px;
}

.qr-code-card img{
  width: 21rem;
  border-radius: 7px;
  margin-bottom: 1.5rem;
}

.qr-code-card h4{
  font-weight: 700;
  font-size: 1.6rem;
  color: hsl(218, 44%, 22%);
  max-width: 200px;
  text-align: center;
  margin: 0 auto 1.2rem auto;
}

.qr-code-card p{
  font-weight: 400;
  font-size: 1.1rem;
  color: hsl(216, 15%, 48%);
  max-width: 180px;
  margin: 0 auto 1.7rem auto;
  text-align: center;
  line-height: 1.4;
}

.attribution { 
  color: hsl(218, 44%, 22%);
  font-size: 1.1rem; 
  text-align: center; 
}
    
.attribution a { 
  color: hsl(228, 45%, 44%); 
}