@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("../images/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%;
	}
}

.info-card {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 350px;
	padding: 20px;
	background-color: #1e1e2f;
	color: white;
	border-radius: 15px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	text-align: center;
	z-index: 1000;
	font-family: "Poppins", sans-serif;
}

.info-card img {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	margin-bottom: 10px;
	border: 3px solid #6c63ff;
}

.info-card h3 {
	margin: 0;
	font-size: 20px;
	color: #ffffff;
}

.info-card p {
	font-size: 14px;
	margin: 10px 0;
	color: #b3b3b3;
}

.info-card .social-icons {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin: 10px 0;
}

.info-card .social-icons a {
	color: white;
	font-size: 20px;
	text-decoration: none;
}

.info-card .social-icons a:hover {
	color: #6c63ff;
}

.info-card .portfolio-btn {
	display: inline-block;
	margin-top: 10px;
	padding: 10px 20px;
	background-color: #6c63ff;
	color: white;
	border: none;
	border-radius: 5px;
	text-decoration: none;
	font-size: 14px;
	cursor: pointer;
}

.info-card .portfolio-btn:hover {
	background-color: #5a54d1;
}

.about-btn {
	position: absolute;
	top: 10px;
	right: 10px;
	background-color: #6c63ff;
	color: white;
	border: none;
	padding: 10px 15px;
	border-radius: 5px;
	cursor: pointer;
	font-size: 14px;
}