@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lexend+Deca:wght@100..900&family=Outfit:wght@100..900&family=Poppins:wght@200;400;600&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
:root {
    --white: hsl(0, 0%, 100%);
    --state300: hsl(212, 45%, 89%);
    --state500: hsl(216, 15%, 48%);
    --state900: hsl(218, 44%, 22%);

    --ff: 'Outfit';
    --fs-500: 1.4rem;
    --fs-300: 1rem;
    --fw-normal: 400;
    --fw-bold: 700;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    background-color: var(--state300);
    font-family: var(--ff);
    color: var(--state500);
    font-weight: var(--fw-normal);
}

body {
    height: 100dvh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.QR-image {
    border-radius: 10px;
    margin: 16px 16px 24px 16px;
}

.information {
    width: 288px;
    margin-bottom: 40px;
}

.information__h1 {
    font-size: var(--fs-500);
    color: var(--state900);
    font-weight: var(--fw-bold);
    padding: 0 5px 0;
    margin-top: 0;
}

.information__p {
    font-size: var(--fs-300);
    padding: 0 15px 0;
    margin-bottom: 0;
}
