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

:root {
  --color-slate-900: #1f314f;
  --color-slate-500: #68778d;
  --color-slate-300: #d5e1ef;
  --color-white: #fff;
  --font-family: "Outfit", sans-serif;
}

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

body {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--color-slate-300);
  z-index: -1;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
 }

.qr-code-card {
  border-radius: 20px;
  padding: 16px 16px 40px 16px;
  width: 320px;
  height: 499px;
  box-shadow: 0 25px 25px 0 rgba(0, 0, 0, 0.05);
  background: var(--color-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  position: relative;
  top: 23px;
}

.image-qr-code {
  width: 288px;
  height: 288px;
  object-fit: cover;
  border-radius: 10px;
}

.description {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 16px;
}

h2 {
  font-family: var(--font-family), sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 120%;
  text-align: center;
  color: var(--color-slate-900);

}

p {
  font-family: var(--font-family), sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 140%;
  letter-spacing: 0.01em;
  text-align: center;
  color: var(--color-slate-500);
}

.attribution {
  width: 100%;
  min-width: 300px;
  text-align: center;
  font-size: 11px;
  margin: 15px auto;
}
.attribution a {
  color: hsl(228, 45%, 44%);
}
