:root {
	--maroon: #891b2f;
	--gold: #eecc0a;
	--gold2: #f9e37d;
	--black: #231f20;
	--white: #f1f1f1f1;
	--light-gray: #f8f8f8;
	--light-blue: #d4ebf8;
	--light-blue2: #8ad4ff;
	--dark-blue: #1e3a8a;
	--shadow-blue: #519fcc;
}

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

a,
a:any-link,
a:active,
a:link,
a:-webkit-any-link,
a:visited {
	text-decoration: none !important;
}

.flex {
	display: flex;
	flex-direction: column;
}

body {
	font-family: 'Plus Jakarta Sans', sans-serif;
	background-color: #ffffff;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

body::-webkit-scrollbar {
	width: 6px;
	height: 6px;
	position: absolute;
	right: 0;
}
body::-webkit-scrollbar-track {
	background-color: transparent;
	margin-right: -6px;
}
body::-webkit-scrollbar-thumb {
	background: rgba(0, 0, 0, 0.1);
	border-radius: 6px;
	margin-right: -6px;
}
body::-webkit-scrollbar-thumb:hover {
	background: rgba(0, 0, 0, 0.4);
}

.nav-wrapper {
	padding: 0 1.5rem;
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
	background-color: var(--gold);
	justify-content: space-between;
}

/* Title Text */
.nav-wrapper span {
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--maroon);
}

.logo-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
}

.icon-links-container {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
}

.ghicon {
	cursor: pointer;
	transition: all 0.15s;
	opacity: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}

.ghicon:hover {
	opacity: 0.6;
}

#main-page {
	transition: all 0.5s;
	border-radius: 50%;
	padding: 0.2rem;
	transition: 0.3s all;
	display: flex;
	justify-content: center;
	align-items: center;
}

#main-page:hover {
	background-color: #ff9a47;
	animation: rotateRight 4s ease-in-out infinite;
}

.msstore-icon {
	cursor: pointer;
	transition: all 0.15s;
	opacity: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}

.msstore-icon:hover {
	opacity: 0.6;
}

@keyframes rotateRight {
	0% {
		transform: rotate(0deg);
		background-color: #ff9a47;
	}

	25% {
		transform: rotate(90deg);
		border-top-left-radius: 0.2rem;
		border-bottom-right-radius: 0.2rem;
		background-color: #fa4b7a;
	}

	50% {
		transform: rotate(180deg);
		border-radius: 25%;
		background-color: #d667cf;
	}

	75% {
		transform: rotate(270deg);
		border-top-right-radius: 0.2rem;
		border-bottom-left-radius: 0.2rem;
		background-color: #4b7afa;
	}

	100% {
		transform: rotate(360deg);
		background-color: #ff9a47;
	}
}

header {
	background-size: cover;
	text-align: center;
	padding: 4rem;
	background-color: var(--light-gray);
}

.header-content {
	display: flex;
	justify-content: center;
}

.header-content > div > h1 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--maroon);
	text-shadow: 0 0.1rem 0.1rem rgba(0, 0, 0, 0.1);
}

.header-content > div > p {
	font-size: 1.3rem;
	font-weight: 400;
	/* background: linear-gradient(to right, #14C38E, #9694FF); */
	background: radial-gradient(
		circle at 100%,
		#14c38e,
		#9694ff 50%,
		#14c38e 75%,
		#14c38e 100%
	);
	background-size: 200% auto;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	animation: alternateTextColor 8s linear infinite;
}

@keyframes alternateTextColor {
	to {
		background-position: 200% center;
	}
}

.header {
	font-size: 3em;
	font-weight: bold;
}

.vision-container {
	display: flex;
	flex-direction: column;
}

.vision-container small {
	font-size: 0.8rem;
	font-weight: 400;
	color: #707070;
}

.vision-container small a {
	text-decoration: none;
	color: #65ba8e;
	transition: all 0.2s;
}

.vision-container small a:hover {
	color: #5eacdd;
}

.header-image {
	max-width: 50%;
}

.previous-works {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 2rem;
}

.prevwork-button {
	border: none;
	color: var(--maroon);
	background-color: var(--gold);
	cursor: pointer;
	padding: 1rem 2rem;
	transition: all 0.3s;
	font-size: 1rem;
	font-weight: 400;
	display: inline-block;
	text-decoration: none;
}

#editor-demo {
	background-color: var(--light-gray);
	border-radius: 1rem;
	padding: 1rem;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	margin-top: 2rem;
}

#try-text {
	background-color: var(--light-blue2);
	color: var(--white);
	font-size: 1.2rem;
	border-radius: 2rem;
	padding: 0.4rem 0.8rem;
	border: 4px solid var(--light-blue);
	transition: all 0.3s;
}

#try-text:hover {
	color: var(--dark-blue);
}

.prevwork-button:hover {
	background-color: var(--maroon);
	color: var(--gold);
}

.btn-large {
	font-size: 1.2em;
	padding: 1.2rem 1.8rem;
}

.bottom-signup {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 2rem 2rem;
}

.signup-button-container {
	display: flex;
	justify-content: center;
	align-items: center;
}

#intersted-button {
	border-radius: 2rem;
	text-decoration: none;
	font-size: 1rem;
	font-weight: 400;
	text-align: center;
	letter-spacing: 0.5px;
	transition: all 0.3s;
	background-color: var(--light-blue);
	box-shadow:
		0 0.4rem 1rem -0.25rem rgba(0, 0, 0, 0.2),
		inset 0 -0.1875rem 0.25rem -0.0625rem rgba(0, 0, 0, 0.2),
		0 -0.625rem 0.9375rem -0.0625rem rgba(255, 255, 255, 0.6),
		inset 0 0.1875rem 0.25rem -0.0625rem rgba(255, 255, 255, 0.2),
		inset 0 0 0.3125rem 0.0625rem rgba(255, 255, 255, 0.8),
		inset 0 1.25rem 1.875rem 0 rgba(255, 255, 255, 0.2);
	color: #878787;
}

#intersted-button:hover {
	background-color: var(--shadow-blue);
	color: #ffffff;
}

#main-article {
	max-width: 64rem;
	display: flex;
	justify-self: center;
	justify-content: center;
	align-self: center;
	flex-direction: column;
	margin-top: 4rem;
	margin-left: 1rem;
	margin-right: 1rem;
	padding: 0 2rem;
}

#main-article h2 {
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: #656565;
}

#main-article p {
	font-size: 1rem;
	font-weight: 400;
	margin-bottom: 1rem;
	line-height: 1.5;
	color: #454545;
}

.article-section {
	margin-bottom: 4rem;
}

.flexrow {
	display: inline-flex;
	flex-direction: row;
}

.flexcol {
	display: flex;
	flex-direction: column;
}

.desc-text {
	display: flex;
	flex-direction: column;
	margin-top: 2rem;
}

.img-container {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 4rem;
}

.main-msdoc-img {
	object-fit: contain;
	width: 50%;
	border-radius: 1rem;
	justify-self: center;
	display: flex;
}

.msdoc-image {
	object-fit: contain;
	width: 45%;
	border-radius: 1rem;
	margin-left: 1rem;
}

.question-desc {
	display: inline-block;
	background-color: #f5f5f5;
	padding: 0.5rem 1rem;
	font-weight: 300;
	font-size: 0.9rem;
	margin-bottom: 0.5rem;
}

.gtype-desc {
	display: inline-block;
	background-color: #f5f5f5;
	padding: 0.5rem 1rem;
	border-radius: 1.5rem;
	font-weight: 300;
	font-size: 0.9rem;
	margin-bottom: 0.5rem;
}

.gtype-img-container {
	display: flex;
	justify-content: center;
	align-items: center;
}

.gtype-img {
	object-fit: contain;
	width: 60%;
	border-radius: 1rem;
}

.members-container {
	display: grid;
	flex-direction: column;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.2rem;
	grid-auto-rows: minmax(8rem, auto);
	justify-self: center;
	position: relative;
}

/* Responsive Design */
@media (max-width: 768px) {
	.members-container {
		grid-template-columns: repeat(2, 1fr);
	}
}

.member {
	border: 1px solid #e0e0e0;
	border-radius: 1rem;
	padding: 1rem;
	transition: all 0.3s;
}

.member:hover {
	transform: translateY(-0.2rem);
	box-shadow: 0 1.25rem 2.5rem 0 rgba(0, 0, 0, 0.1);
	border: 1px solid transparent;
}

/* Name and Img container */
.name-img {
	justify-content: start;
	align-items: center;
	display: flex;
}

.name-img a {
	text-decoration: none;
	text-emphasis: none;
}

.name-img h3 {
	font-size: 1.2rem;
	font-weight: 600;
	color: #454545;
	transition: all 0.2s;
	text-decoration: none;
}

.name-img h3:hover {
	color: #9694ff;
}

.desc-text-light {
	color: #a8a8a8 !important;
}

.text-light {
	color: #a0a0a0 !important;
}

.text-light:hover {
	color: #b4b3e6 !important;
}

.border-light {
	border: 1px solid #f1f1f1;
}

.member-img {
	object-fit: cover;
	width: 12%;
	height: 12%;
	border-radius: 0.4rem;
	margin-right: 0.5rem;
}

.lowop {
	opacity: 0.6;
}

.profile-desc {
	display: flex;
	flex-direction: column;
	margin-top: 1rem;
}

footer {
	display: flex;
	bottom: 0;
	justify-self: center;
	justify-content: center;
	width: 80%;
	margin: 0 auto;
	border-top: 1px solid #e0e0e0;
}

.footer-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 1rem 0;
}

.footer-text {
	font-size: 0.8rem;
	font-weight: 400;
	color: #a0a0a0;
}

.link-container {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding: 0.5rem;
	gap: 1rem;
}

.link-container > a {
	text-decoration: none !important;
	color: #bbbbbb;
	transition: all 0.1s;
	font-size: 0.7rem;
}

.link-container > a:hover {
	color: #cacaca;
}
