:root{
    --slate: hsl(212, 45%, 89%);
}
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-size: 15px;
    font-family: "Outfit", sans-serif;
}
body{
    background-color: var(--slate);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: center;
    align-items: center;
}
.container{
    background-color: white;
    display: flex;
    flex-direction: column;
    width: 250px;
    height: 400px;
    border-radius: 18px;
    padding: 10px;
    box-shadow: 1px 1px 15px 5px rgba(154, 154, 154, 0.3);
    margin-bottom: 20px;
}
img{
    width: 100%;
    border-radius: 9px;   
}
.qr-code{
    margin-bottom: 15px;
}
.heading{
    font-size: 1.2rem;
    margin-bottom: 15px;
}
.subheading{
font-size: 0.9rem;
color: grey;
}
.text{
    text-align: center;
}

@media screen and (max-width: 375px) {
    body{
        background-color: var(--slate);
        display: flex;
        flex-direction: column;
        min-height: 100vh;
        justify-content: center;
        align-items: center;
    }
    .container{
        background-color: white;
        display: flex;
        flex-direction: column;
        width: 250px;
        height: 400px;
        border-radius: 18px;
        padding: 10px;
        box-shadow: 1px 1px 15px 5px rgba(154, 154, 154, 0.3);
        margin-bottom: 20px;
    }
    img{
        width: 100%;
        border-radius: 9px;   
    }
    .qr-code{
        margin-bottom: 15px;
    }
    .heading{
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    .subheading{
    font-size: 0.9rem;
    color: grey;
    }
    .text{
        text-align: center;
    }
}