@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;700&display=swap');

:root {
    --white: hsl(0, 0%, 100%);
    --light-gray: hsl(212, 45%, 89%);
    --grayish-blue: hsl(220, 15%, 55%);
    --dark-blue: hsl(218, 44%, 22%);
}

* {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    box-sizing: border-box;
}

body {
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    width: 100%;
    background-color: var(--light-gray);
}

.container {
    margin: 20px;
}

.content {
    border-radius: 15px;
    padding: 15px;
    width: 100%;
    max-width: 325px;
    background-color: var(--white);
}

    .qrcode-area {
        border-radius: 10px;
    }

    .qrcode-area img {
        border-radius: 10px;
        width: 100%;
        height: auto;
    }

    .text-area {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 15px;
    }

        h1 {
            color: var(--dark-blue);
            font-size: 1.5rem;
            margin: 0;
        }

        p {
            color: var(--grayish-blue);
            margin-top: 10px 0px 0px 0px;
        }

.attribution { font-size: 11px; text-align: center; }
.attribution a { font-size: 12px; color: hsl(228, 45%, 44%); text-decoration: none; }
.attribution a:hover {font-weight: bolder;}