*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "outfit";
}
body{
    background-color: var(--container-background-color);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.container{
    width:300px;
    height: 500px;
    border: 1px solid black;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 2rem;
    background-color: #fff;
    padding: 1rem;
}
.qr-code-container{
    min-width: 100%;
    min-height: 55%;
    border-radius: 16px;
    margin: 1rem 0;
}
.qr-code-container img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
}
.first-paragraph{
    min-width: 100%;
    min-height: 10%;
    text-align: center;
    padding: 0.5rem;
    border-radius: 16px;
}
.first-paragraph p{
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.4rem;
}
.second-paragraph{
    min-width: 100%;
    min-height: 20%;
    text-align: center;
    padding: 0.5rem;
    border-radius: 16px;
}
.second-paragraph p{
    font-weight: 400;
    opacity: 0.5;
    font-size: 1.1rem;
    line-height: 1.3rem;
}

:root{
    --container-background-color: hsl(212, 45%, 89%);
    --body-background-color:hsl(216, 15%, 48%);
    --qr-code-background-color: hsl(218, 44%, 22%);
}