* {
	padding: 0;
	margin: 0;
}

.conatiner {
	background-image: url(/Assets/bg.jpg);
	background-position: center;
	background-size: cover;
	height: 100dvh;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

button {
	outline: 0;
	border: 0;
	background-color: black;
	color: aliceblue;
	cursor: pointer;
	border-radius: 8px;
	padding: 12px 25px;
	font-size: 15px;
	box-shadow: 0 1px 8px rgba(255, 255, 255, 0.353);
	margin-top: 5px;
	cursor: pointer;
}

.heading {
	font-size: 4rem;
	color: aliceblue;
	text-align: center;
	font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
		"Lucida Sans Unicode", Geneva, Verdana, sans-serif;
	font-weight: bold;
}

button:hover {
	background-color: blueviolet;
	color: rgb(255, 255, 255);
	box-shadow: 0 1px 5px rgb(241, 0, 169);
	transition: ease-in 1s;
}

.back-pop {
	background-color: aliceblue;
	width: 72%;
	height: 8rem;
	color: aliceblue;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-left: 1.4rem;
	padding-right: 1.4rem;
	border-radius: 1rem;
	position: absolute;
	top: 32%;
	right: 50%;
	transform: translate(50%, 50%);
	display: none;
	animation: popup 2.5s;
}

@keyframes popup {
	0% {
		top: -505px;
	}
	100% {
		bottom: 505px;
	}
}

.pop {
	color: black;
	text-align: center;
	font-size: 16px;
	transition: 2s;
}

.close {
	color: black;
	font-weight: bold;
	font-size: 35px;
	position: relative;
	bottom: 45px;
	left: 8px;
	cursor: pointer;
}

.close:hover {
	color: red;
}

@media (max-width: 767px) {
	.heading {
		font-size: 2rem;
		color: aliceblue;
		text-align: center;
		font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
			"Lucida Sans Unicode", Geneva, Verdana, sans-serif;
		font-weight: bold;
	}
	.pop {
		color: black;
		text-align: center;
		font-size: 10px;
		transition: 2s;
	}
}
