:root {
    --Slate-900: #1F314F;
    --Slate-500: #68778D;
    --Slate-300: #D5E1EF;
}

body {
    margin: 0;
    font-family: Outfit;
    text-align: center;
    background-color: var(--Slate-300);

}

img {
    width: 100%;
    border-radius: 10px;
}

.wrapper {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
} 

.container {
    width: 320px;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.2);
    transition-duration: .5s;
}

.qr {
    padding: 16px;
    padding-bottom: 24px;
}

.text {
    padding: 0 16px 20px;
}

.text p {
    margin: 0;
    margin-bottom: 16px;
    padding-inline: 16px;
}

.text-1 {
    font-size: 22px;
    font-weight: bold;
    line-height: 120%;
    color: var(--Slate-900);
}

.text-2 {
    font-size: 15px;
    font-weight: 400;
    line-height: 140%;
    color: var(--Slate-500);
}

@media screen and (max-width: 370px) {
    .wrapper {
        margin-inline: 24px;
    }
}

@media (any-hover: hover) {
    .container:hover {
        transform: scale(1.25);
    }
}