﻿* {
    --Slate-300: #D5E1EF;
    --Slate-500: #68778D;
    --Slate-900: #1F314F;
    --White: #FFFFFF;
    
    --spacing-500: 500;
    --spacing-300: 300;
    --spaacing-200: 200;
    
}
html, body {
    height: 100%;
}

body {
    background-color: var(--Slate-300);
    display: flex;
    justify-content: center; /*x-axis*/
    align-items: center; /*y-axis*/
}


.container{
    display: flex;
    flex-direction: column;
    padding: 1rem 1rem 2.5rem 1rem;
    gap:1.5rem;
    width:20rem; /* 16px = 1rem*/
    height:31rem;
    background-color: var(--White);
    justify-content: center;
    align-items: center;
    border-radius: 1.25rem;
}
.qr-container{
    width: 18rem;
    height:18rem;
}
.qr-image{
    width: 18rem;
    height:18rem;
    border-radius: 1.25rem;
}

.text-container{
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 18rem;
    height: 8rem;
    font-family: Outfit;
    
    & h1{
        font-size:22px;
        line-height: 120%;
        font-weight: 700;
        color: var(--Slate-900);
    }

    & p{
        font-size: 15px;
        line-height: 140%;
        letter-spacing: 0.2px;
        font-weight: 400;
        color: var(--Slate-500);
    }
}

