#more_info{
    grid-column: 1/2;
}

body{
    min-height: 100vh;
    max-height: 90vh;
    display: flex;
    justify-content: center; 
    align-items: center;   
    background-color: hsl(212, 45%, 89%);
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
}

#wrapper{
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr;
}

.parent{
    grid-row: 2/3;
    text-align: center;
}

#qr_code{
    background-color: hsl(0, 0%, 100%);
    border-radius: 18px;
    padding: 20px;
    width: 17rem;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.05);
}

#qr_code h2{
    color: hsl(218, 44%, 22%);
    font-weight: 700;
}

#qr_code p{
    color: hsl(216, 15%, 48%);
    font-weight: 400;
    
}

#qr_code a{
    font-weight: 700;
    text-decoration: none;
    color: hsl(215, 15%, 41%);
}

#qr_code a:hover{
    text-decoration: underline;
    color: hsl(218, 44%, 22%);
}



#qr_code img{
    height: 75%;
    width: 100%;
    border-radius: 9px;
}



