* {
	font-family: 'Poppins', sans-serif;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
body {
	background: linear-gradient(145deg, #e3f2fd, #bbdefb);
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
}

h2 {
	color: #37474f;
	font-size: 28px;
	text-transform: uppercase;
	margin: 10px 0;
	font-weight: 700;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}
p.subtitle {
	color: #607d8b;
	font-size: 16px;
	text-align: center;
	margin: 20px 0;
}

.wrapper {
	width: 100%;
	padding: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.container {
	background: #ffffff;
	padding: 40px;
	border-radius: 20px;
	box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.1);
	text-align: center;
	max-width: 400px;
	width: 100%;
}

.logo img {
	width: 80px;
	border-radius: 50%;
	border: 4px solid #90caf9;
	box-shadow: 0px 5px 15px rgba(144, 202, 249, 0.5);
}
.logo {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.boxes {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-top: 20px;
}

.box {
	border-radius: 15px;
	overflow: hidden;
	width: 100%;
	height: 120px;
	transition: transform 0.3s, box-shadow 0.3s;
	position: relative;
}
.box:hover {
	transform: scale(1.05);
	box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.2);
	cursor: pointer;
}

.box img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 20px;
	
	background: #eff3f9;
}

/* .box.click {
	background: linear-gradient(135deg, #03a9f4, #0288d1);
}
.box.payme {
	background: linear-gradient(135deg, #4caf50, #388e3c);
}
.box.uzum {
	background: linear-gradient(135deg, #9c27b0, #6a1b9a);
} */

@media (max-width: 500px) {
	h2 {
		font-size: 24px;
	}
	.logo img {
		width: 60px;
	}
	p.subtitle {
		font-size: 14px;
	}
}
