@media only screen and (max-width: 500px) {
  #qrcode {
    height: 50%;
    width: 50%;
  }
}

@media only screen and (max-width: 300px) {
  #qrcode {
    height: 30%;
    width: 30%;
  }
}

body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
}

.container {
    margin: 0 auto;
    text-align: right;
    height: 220px;
    width: 206px;
    position: fixed;
    bottom: -131px;
    right: -50px;
    display: grid;
    place-items: center;
    transform: translate(-50%, -50%) scale(1.45);
}

h1 {
	font-size: 2em;
	margin-top: 10px;
	margin-bottom: 10px;	
}

#qrcode {
	margin-top: -100px;
	top: -50px;
  	left: 200px;
 	height: 50px; 
  	width: 50px; 
	transform: translate(-50%, -50%);
		
}
@media only screen and (max-width: 1300px) {
    .container {
        margin: 0 auto;
        text-align: right;
        height: 220px;
        width: 206px;
        position: fixed;
        bottom: -131px;
        right: -80px;
        display: grid;
        place-items: center;
        transform: translate(-50%, -50%) scale(.9);
        display: none;
    }
}

