* {
    font-family: 'Outfit', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {  
    background-color: hsl(212, 45%, 89%);
}

p {
    font-size: 15px;
}
#qr-container {
    display: flex;
    
    justify-content: center;
    align-items: center;
    /*max-width: 1440px;*/
    height: 100vh;    
}
.qr-card {  
    background-color: hsl(0, 0%, 100%);   
    padding: 15px;
    width: 300px;
    height: 480px;
    border-radius: 15px;    
    /*align-items: center;
    justify-content: center;*/
}
.qr-card img {
    width: 100%;    
    border-radius: 10px;
    margin-bottom: 10px;
}
.qr-card h1 {
    margin-top: 5px;
    padding: 0 20px;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}
.qr-card p {
    padding: 0 12px;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    color: hsl(218, 44%, 22%);
    margin-bottom: 20px;
    
}
@media (max-width: 375px) { 
    #qr-container {
        display: flex;
        align-items: center;
        justify-content: center;
        max-width: 375px;
        
        /*height: 90vh;*/
    }
    .qr-card {
        margin: 10px auto;
        width: 90%;
        
        
    }
}