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

:root {
    --White: hsl(0, 0%, 100%);
    --Slate-300: hsl(212, 45%, 89%);
    --Slate-500: hsl(216, 15%, 48%);
    --Slate-900: hsl(218, 44%, 22%);
}

body {

    background-color: var(--Slate-300);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.card {
    width: 320px;
    height: 100%;
    background-color: var(--White);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    padding: 10px;
}

.qr-code {
    width: 288px;
    /* height: 288px; */
    border-radius: 10px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.content {
    /* border: 5px solid red; */
    margin: 20px auto;
    padding: 10px 20px;
    font-family: "Outfit", sans-serif;
    text-align: center;
}

.content h1 {
    color: var(--Slate-900);
    font-size: 22px;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: 0px;
}

.content p {
    color: var(--Slate-500);
    font-size: 15px;
    font-weight: 400;
    line-height: 140%;
    margin-top: 20px;
    letter-spacing: 0.2px;
}