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

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
:root {
    --color-white: hsl(0, 0%, 100%);
    --color-slate300: hsl(212, 45%, 89%);
    --color-slate500: hsl(216, 15%, 48%);
    --color-slate900: hsl(218, 44%, 22%);
    --font-size: 15px;
    --border-radius: 10px;
}

html {
    font-size: var(--font-size);
}

body {
    height: 100dvh;
    background-color: var(--color-slate300);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
img {
    width: 450px;
    height: 450px;

    border-radius: var(--border-radius);
}
p {
    font-size: var(--font-size);
    text-align: center;

    padding-block: 10px;
}
.bold {
    font-family: "Outfit";
    font-weight: 700;

    font-size: 1.4rem;

    color: var(--color-slate900);
}
.subtitle {
    font-family: "Outfit";
    font-weight: 400;

    color: var(--color-slate500)
}
.qr-wrapper {
    height: auto;
    width: 500px;

    background-color: var(--color-white);
    border-radius: var(--border-radius);
    padding: 20px;

    margin-bottom: 40px;
}

@media (max-width: 551px) {
    img {
        width: 250px;
        height: 250px;
    }

    .qr-wrapper {
        width: 300px;
    }
}