/* Generated default CSS START */

@import url("https://api.fonts.coollabs.io/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

/* Generated default CSS END */
/* Custom CSS START */

body {
	font-family: "Poppins", sans-serif;
	font-size: 16px;
	line-height: 1.5;
	background: #000;
	color: #fff;
	display: flex;
	align-items: center;
	flex-direction: column;
}

.content {
	width: 60%;
	margin-top: 150px;
}

.topnavBackground {
	z-index: 1000;
	background: #00000094;
	height: 100px;
	width: 100%;
	position: fixed;
	backdrop-filter: blur(30px);
}

.topnav {
	width: 65%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0 auto;
	height: 100px;
	border-bottom: 1px solid #fff;
}

.topnav .logo {
	position: relative;
	height: 50px;
	width: 50px;
	background: url(./resources/images/logo.png);
	background-size: cover;
	background-position: center;
	border-radius: 50%;
	margin-left: 20px;
}

.topnav .items {
	display: flex;
	align-items: center;
	gap: 80px;
	margin-right: 20px;
}

.topnav .items .item {
	color: #fff;
	text-decoration: none;
	font-size: 1.2rem;
}

.heading {
	font-weight: 600;
	font-size: 7rem;
	margin-bottom: 50px;
	line-height: 60%;
}

.headings {
	margin-top: 50px;
	margin-bottom: 80px;
}

p {
	font-size: 1.5rem;
	margin-bottom: 20px;
	line-height: 200%;
}

.buttons {
	margin-top: 80px;
	display: flex;
	gap: 20px;
}

.primayButton {
	background: #fff;
	color: #000;
	padding: 15px 80px;
	border: none;
	border-radius: 15px;
	font-size: 1.5rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.3s;
}

.primayButton:hover {
	background: #ccc;
}

.primayButton:active {
	transform: scale(0.9);
}

.secondaryButton {
	background: transparent;
	color: #fff;
	padding: 15px 60px;
	border: 2px solid #fff;
	border-radius: 15px;
	font-size: 1.5rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.3s;
}

.secondaryButton:hover {
	background: #1b1b1b;
}

.secondaryButton:active {
	transform: scale(0.9);
}

.deco {
	width: 100%;
	height: 300px;
	background: url(./resources/images/deco.png);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

.seperator {
	width: 100%;
	height: 2px;
	background: #2b2b2b;
	margin: 50px 0;
}

h2 {
	font-size: 4rem;
	font-weight: 600;
	margin-bottom: 20px;
}

h3 {
	font-size: 3rem;
	font-weight: 600;
	margin-bottom: 20px;
	margin-top: 50px;
}

.fade-in-animation {
	animation: fadeIn 0.4s ease-in-out;
}

.fade-in {
	opacity: 0;
}

@keyframes fadeIn {
	0% {
		opacity: 0;
		transform: translateY(20px);
		filter: blur(10px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
		filter: blur(0px);
	}
}

.fade-in-animation-heading {
	animation: fadeInHeading 0.4s ease-in-out;
}

.inline-block {
	display: inline-block;
}

.inline {
	display: inline;
}

@keyframes fadeInHeading {
	0% {
		opacity: 0;
		transform: translateY(20px);
		filter: blur(10px);
	}
	100% {
		opacity: 1;
		transform: translateY(0px);
		filter: blur(0px);
	}
}

.imgGallery {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 20px;
}

.img {
	width: 100%;
	height: 300px;
	border-radius: 15px;
	transition: 0.3s;
}

.imgGallery .img:nth-child(1) {
	background: url(./resources/images/game1.png);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.imgGallery .img:nth-child(2) {
	background: url(./resources/images/game2.png);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.imgGallery .img:nth-child(3) {
	background: url(./resources/images/game3.png);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.img:hover {
	transform: scale(1.1);
}

.imgGallery:hover:has(> .img:hover) .img:not(:hover) {
	filter: blur(10px) grayscale(1);
	transform: scale(0.9);
	opacity: 0.5;
}

#generatedPersons {
	display: flex;
	flex-direction: column;
	gap: 50px;
}

.person {
	padding: 20px;
	width: 100%;
	display: flex;
	align-items: center;
	gap: 20px;
}

.person .person-text {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.person-img {
	width: 35%;
	border-radius: 20px;
	height: auto;
	margin: 0 20px;
}

.person-name {
	font-size: 3rem;
	color: #ffffff;
	margin-bottom: 10px;
}

.person-position {
	font-size: 2rem;
	color: #ffffff;
	opacity: 0.7;
	margin-bottom: 50px;
}

.person-description {
	font-size: 1.5rem;
	color: #ffffff;
}

.person:nth-child(odd) {
	flex-direction: row;
}

.person:nth-child(even) .person-text {
	text-align: right;
}

.person:nth-child(even) {
	flex-direction: row-reverse;
}

@media (max-width: 768px) {
	.person {
		flex-direction: column;
		text-align: center;
	}

	.person:nth-child(even),
	.person:nth-child(odd) {
		flex-direction: column;
	}
}

/* Custom CSS START */
