@import url("https://fonts.googleapis.com/css2?family=Poppins&family=Quicksand:wght@500;700&display=swap");

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

body {
	background: url("stacked-waves-haikei.svg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	padding-left: 5%;
	padding-right: 5%;
	overflow: hidden;
}

.qr-container {
	max-width: 400px;
	margin: 0 auto;
	padding: 20px;
	background: rgba(255, 255, 255, 0.24);
	border-radius: 16px;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(7px);
	-webkit-backdrop-filter: blur(7px);
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.qr-heading {
	text-align: center;
	font-size: 30px;
	color: white;
	font-weight: 700;
	text-shadow: #000000 1px 0 10px;
}

.qr-label {
	display: block;
	margin-top: 10px;
}

.qr-input {
	width: 100%;
	padding: 10px;
	margin-bottom: 10px;
	margin-top: 10px;
	background: rgba(255, 255, 255, 0.385);
	border-radius: 6px;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.3);
	outline: none;
	transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
	box-shadow: 0px 0px 20px -18px;
	z-index: 100;
}

.qr-input:hover {
	border: 2px solid lightgrey;
	box-shadow: 0px 0px 20px -17px;
}

.qr-input:active {
	transform: scale(0.95);
}

.qr-button {
	width: 100%;
	padding: 10px;
	font-size: 15px;
	background-color: #0066ff;
	letter-spacing: 2px;
	color: #fff;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

.qr-button:hover {
	background-color: #0155d3;
}

.qr-code {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: white;
	padding: 5%;
	border-radius: 15pt;
}

.qr-download {
	display: block;
	text-align: center;
	text-decoration: none;
	background-color: #0066ff;
	color: #fff;
	padding: 10px;
	border-radius: 5px;
	font-size: 15px;
}

.qr-download:hover {
	background-color: #0155d3;
}

#About {
	position: absolute;
	right: 3%;
	top: 3%;
	background: rgba(255, 255, 255, 0.478);
	border: none;
	padding: 10px;
	border-radius: 50%;
}

#About img {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 20px;
	height: 20px;
}

@media (min-width: 320px) and (max-width: 767px){
	.qr-container {
	position: relative;
	bottom: 5%;
	}
}