:root{
	--white: hsl(0, 0%, 100%);
	--light-gray: hsl(212, 45%, 89%);
	--grayish-blue: hsl(220, 15%, 55%);
	--dark-blue: hsl(218, 44%, 22%);
	--mobile: 375px;
	--desktop: 1440px;
	--font:Outfit, sans-serif;
}

* {
  padding: 0;
  margin: 0;
}

html{
  height: 100%;
}

body { 
	background-color: var(--light-gray);
	font-family: var(--font);
	height: 100%;
}


.flex-container {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
justify-content	: center;
align-items	:flex-start ;
align-content: stretch;
background:  var(--light-gray);
width: 100%;
height: 100%;
}

.flex-item {
	order: 0;
    display: flex;
    flex: 0 1 auto;
    align-self: center;
    background: var(--white);
    width: 270px;
    border-radius: 20px;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;	
}	

.qrcode > img {
    width: 90%;
    margin: 5%;
    border-radius: 11px;

}

.qrcode {
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

p.heading{ 
    font-size: 19px;
    font-weight: 600;
    text-align: center;
    line-height: 28.2px;
    color: var(--dark-blue);
    margin: 5px 15px 5px 15px;

}

p.explain {
    font-size: 13.5px;
    text-align: center;
    padding: 11px 22px 35px 18px;
    color: var(--grayish-blue);
    font-weight: 400;
    line-height: 17px;
}
      