body {
	margin: 0;
	height: 100vh;
	background: linear-gradient(to bottom right, #3899ee, #38e2ee);
	display: flex;
	justify-content: center;
	align-items: center;
}

.btn {
	background-color: white;
	color: #401aff;
	text-transform: uppercase;
	letter-spacing: 0.05rem;
	border-radius: 0.3rem;
	padding: 2rem 7rem;
	font-size: 1.8rem;
	font-weight: bold;
	margin: 0 1rem;
	border: none;
	cursor: pointer;
	transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.btn1 {
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.btn1:hover {
	transform: translateY(-5px);
	box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 13px rgba(0, 0, 0, 0.22);
}

.btn2 {
	box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 13px rgba(0, 0, 0, 0.22);
}

.btn2:hover {
	transform: scale(0.95);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18), 0 6px 6px rgba(0, 0, 0, 0.22);
}

@media only screen and (max-width: 850px) {
	body {
		flex-direction: column;
		gap: 1em;
	}
	.btn {
		scale: 0.8;
		
	}
}
@media only screen and (max-width: 420px) {
	body {
		scale: 0.8;
	}
	.btn {
		scale: 0.6;
		
	}
}