:root {
	--bg-color: hsl(212, 45%, 89%);
	--main-color: hsl(218, 44%, 22%);
	--second-color: hsl(216, 15%, 48%);
}

body {
	margin: 0;
	background-color: var(--bg-color);
	font-family: Outfit;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
}

.container {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	background-color: white;
	height: fit-content;
	max-width: 300px;
	width: 90%;
	padding: 18px;
	margin: 20px;
	margin-bottom: 10px;
	border-radius: 10px;
}

.qr-img {
	width: 100%;
	height: auto;
	border-radius: 10px;
}

.label {
	color: var(--main-color);
	font-size: 20px;
	font-weight: 700;
	width: 250px;
	margin-bottom: 0;
}
.info {
	font-size: 15px;
	color: var(--second-color);
	font-weight: 400;
	width: 260px;
}

.attribution {
	color: var(--second-color);
	font-size: 12px;
	padding-bottom: 4px;
}
.attribution a {
	text-decoration: none;
	color: black;
}
.attribution a:hover {
	color: var(--main-color);
}

@media (max-width: 768px) {
	.container{
		max-width: 250px;
	}
	.attribution {
		font-size: 10px;
	}
}

@media (max-width: 425px) {
	.container{
		max-width: 180px;
	}
	.label{
		font-size: 12px;
		width: 150px;
	}
	.info{
		font-size: 10px;
		width: 170px;
	}	
	.attribution {
		font-size: 8px;
	}
}




