* {
	padding: 0;
	margin: 0;
	list-style: none;
	text-decoration: none;
	box-sizing: border-box;
	scroll-behavior: smooth;
}

/* For The About Page  */

.navbar {
	top: 0;
	left: 0;
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 48.5px;
	padding: 0 24px 0 0;
	z-index: 99;
	background: #101010;
	transition: all 0.5s;
}

.navbar-logo img {
	width: auto;
	height: 48.5px;
	cursor: pointer;
	padding: 0 0 0 10px;
	z-index: 9999;
}

.navbar-menu {
	float: right;
	margin-left: auto;
}

.navbar-item {
	display: inline-block;
	padding: 0 30px;
}

.navbar-links {
	color: #fff;
	font-size: 1.18rem;
	transition: 0.3s ease;
}
.navbar-links:hover {
	background: #fff;
	color: #101010;
	padding: 3px 8px;
	border-radius: 15px;
}

.hamburger {
	display: none;
	cursor: pointer;
}

.bar {
	display: block;
	width: 25px;
	height: 3px;
	margin: 5px auto;
	-webkit-transition: all 0.3s ease-in-out;
	background-color: #fff;
}

@media screen and (max-width: 750px) {
	.hamburger {
		display: block;
	}

	.hamburger.active .bar:nth-child(2) {
		opacity: 0;
	}
	.hamburger.active .bar:nth-child(1) {
		transform: translateY(8px) rotate(45deg);
	}
	.hamburger.active .bar:nth-child(3) {
		transform: translateY(-8px) rotate(-45deg);
	}

	.navbar-menu {
		display: flex;
		position: fixed;
		left: -100%;
		top: 0;
		gap: 50px;
		flex-direction: column;
		background: rgba(0, 0, 0, 0.8);
		backdrop-filter: blur(10px);
		width: 40%;
		text-align: center;
		transition: 0.3s;
		height: 100%;
		padding-top: 48.5px;
	}

	.navbar-item {
		margin: 16px 0;
	}

	.navbar-menu.active {
		left: 0;
	}
}

@media screen and (max-width: 570px) {
	.navbar-menu {
		width: 100%;
	}
}

@media screen and (max-height: 450px) {
	.navbar-menu {
		gap: 0;
	}
}

/* navbar section end  */

.container1 {
	position: relative;
	display: flex;
	width: 100vw;
	height: 100vh;
	justify-content: center;
	background: #dde1e7;
}

.neumorphism1 {
	display: flex;
	width: 625px;
	height: 300px;
	margin: 250px auto;
	background: #dde1e7;
	box-shadow: -3px -3px 7px #ffffffb2, 3px 3px 5px rgba(94, 104, 121, 0.945);
	text-align: center;
	align-items: center;
	justify-content: center;
}

.center1 {
	width: 100%;
	height: 100%;
	margin: auto;
	padding: 10px;
	text-align: center;
	justify-content: center;
}

.center1 p {
	font-size: 1.5rem;
	color: gray;
	margin-top: 20px;
}

.center1 p:hover {
	font-size: 1.5rem;
	text-transform: uppercase;
}

.center1 a {
	color: gray;
	cursor: pointer;
}
@media screen and (max-height: 900px) {
	.neumorphism1 {
		margin: 150px auto;
	}
}

@media screen and (max-width: 785px) {
	.neumorphism1 {
		width: 70%;
	}
}

@media screen and (max-width: 500px) {
	.neumorphism1 {
		width: 80%;
	}
}

@media screen and (max-height: 400px) {
	.neumorphism1 {
		width: 90%;
		height: 200px;
		margin: 60px auto;
	}
}

@media screen and (max-height: 600px) {
	.neumorphism1 {
		margin: 70px auto;
	}
}

/* For The Thanks Page  */

.container {
	position: absolute;
	display: flex;
	width: 100vw;
	height: 100vh;
	justify-content: center;
	background: #dde1e7;
}

.neumorphism {
	display: flex;
	width: 60%;
	height: 70%;
	margin: auto;
	background: #dde1e7;
	box-shadow: -3px -3px 7px #ffffffb2, 3px 3px 5px rgba(94, 104, 121, 0.945);
	text-align: center;
	align-items: center;
	justify-content: center;
}

.center {
	width: 100%;
	height: 100%;
	margin: auto;
	padding: 0 5px;
	text-align: center;
	justify-content: center;
}

.center p {
	font-size: 0.9rem;
	color: gray;
	margin: 40px;
}

.center a {
	color: gray;
	cursor: pointer;
}

@media screen and (max-width: 500px) {
	.neumorphism {
		width: 80%;
	}
}

@media screen and (max-height: 400px) {
	.neumorphism {
		height: 80%;
	}
}
