:root {
     /* Colors */
  --white: hsl(0, 0%, 100%);
  --slate-300: hsl(212, 45%, 89%);
  --slate-500: hsl(216, 15%, 48%);
  --slate-900: hsl(218, 44%, 22%);

  /* Typography */
  --font-family: 'Outfit', sans-serif;
  --font-size-paragraph: 15px;
  --font-weight-regular: 400;
  --font-weight-bold: 700;
}

body {
    font-family: var(--font-family);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--slate-300);
    height: 100vh; 
    margin: 0; 
}

.qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 16px 40px;
    gap: 24px;
    box-shadow: 0px 25px 25px rgba(0, 0, 0, 0.0476518);
    border-radius: 20px;
    background-color: var(--white);
    max-width: 320px;
    width: auto;
}

.qr-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px 16px;
    gap: 16px;
    text-align: center;
}

.qr-text p,h1 {
    font-style: normal;
    margin: 0;
}

.qr-text h1 {
    font-weight: 700;
    font-size: 22px;
    line-height: 120%;
    color: var(--slate-900);
}

.qr-text p {
    font-weight: 400;
    font-size: 15px;
    line-height: 140%;
    letter-spacing: 0.2px;
    color: var(--slate-500);
}

.qr-image {
    width: 100%;
    height: 288px;
    background: #2C7DFA;
    border-radius: 10px;
}
