@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


body {
  background-color: hsl(212, 45%, 89%);
  width: 1440px;
  font-family: 'Outfit', sans-serif;
}

.container {
  background-color: hsl(0, 0%, 100%);
  width: 300px;
  height: 495px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 200px;
  margin-bottom: auto;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, .1);

}

.qrcode {
  width: 250px;
  height: 250px;
  margin: 25px;
  border-radius: 8px;
}

.line-one {
  width: 250px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
}

.line-two {
  width: 250px;
  font-size: 15px;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
}

.attribution { 
  width: 250px;
  font-size: 15px; 
  text-align: center; 
  margin-right: auto;
  margin-left: auto;
  margin-top: -5px;
  line-height: 1.6;
}

a { 
  color: hsl(228, 45%, 44%);

}

a:link {
  text-decoration: none;
  color: hsl(220, 15%, 55%);
}

a:visited {
  color: hsl(220, 15%, 55%);
}

a:hover {
  color: hsl(218, 44%, 22%);
  font-weight: bold;
  cursor: pointer;
  text-decoration: underline double hsl(228, 45%, 44%);
}

a:active {
  color: hsl(228, 45%, 44%);
  font-style: italic;
  font-weight: normal;
}

@media (max-width:375px) {
  body {
    width: 50px;
  }

  .container {
    background-color: hsl(0, 0%, 100%);
    width: 375px;
    height: 375px;
    margin-right: auto;
    margin-left: auto;
    margin-top: 10px;
    margin-bottom: 10;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, .1);
  
  }

}