@import url("https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed: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&family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Outfit:wght@100..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&family=Vazirmatn:wght@100..900&display=swap");

:root {
  font-size: 15px;
}

* {
  font-family: Outfit;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: hsl(218, 44%, 22%);
}

p {
  color: hsl(216, 15%, 48%);
}

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

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

.qr {
  max-width: 320px;
  padding: 15px;
  background-color: hsl(0, 0%, 100%);
  text-align: center;
  border-radius: 15px;
}

.qr img {
  width: 100%;
  border-radius: 15px;
}

.qr h1 {
  font-weight: 700;
  font-size: 1.4rem;
}

.qr p {
  font-weight: 400;
  font-size: 1rem;
}

.qr .content {
  margin: 10px;
}

.attribution {
  background-color: black;
  width: 100%;
  text-align: center;
  padding: 10px 0px;
  color: white;
}

.attribution a {
  font-weight: bold;
  color: white;
}