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

body {
	font-family: "Inter", sans-serif;
	background-color: #1f2024;
}

#nav {
	display: flex;
	justify-content: center;
	flex-direction: row;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	padding: 2rem;
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(10px);
	background-color: transparent;
	box-shadow: 0 4px 20px -6px #222327;
}

#nav-items {
	display: flex;
	flex-direction: row;
	gap: 5rem;
	list-style-type: none;
}

#nav-items a {
	color: white;
	transition: all 0.2s ease-in-out;
	font-weight: 500;
	text-decoration: none;
}

.current a {
	color: #efba00 !important;
}

.current a:hover {
	color: white !important;
}

#nav-items a:hover {
	color: #efba00;
	cursor: pointer;
}

main {
	min-height: 100vh;
}

.team-content {
	padding-left: 2rem;
	padding-right: 2rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-top: 9rem;
	gap: 1.5rem;
	color: white;
}

.team-content h3 {
	font-weight: 500;
	font-size: 1.2rem;
	opacity: 80%;
}

.line {
	border-width: 0;
	height: 2px;
	border-width: 0;
	background-color: white;
	max-width: 15rem;
	width: 15%;
	opacity: 8%;
	margin-top: 1rem;
	margin-bottom: 1rem;
}

#icon {
	color: #efba00;
	margin-right: 1rem;
}

.member-wrap {
	margin-top: 2rem;
}

.member-text {
	font-size: 1rem;
}

.members {
	display: flex;
	gap: 2rem;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 1.5rem;
}

.member {
	background-color: #28292e;
	width: 18rem;
	padding-bottom: 0.5rem;
	border-radius: 0.5rem;
	transition: all 0.2s ease-in-out;
}

.member:hover {
	transform: translateY(-4px);
	cursor: pointer;
}

.member img {
	border-radius: 0.5rem 0.5rem 0px 0px;
	width: 100%;
	height: 100%;
	height: 10rem;
	object-fit: cover;
}

.member p {
	margin-top: 0.7rem;
	margin-bottom: 0.4rem;
	margin-left: 1rem;
}

.name {
	font-weight: 500;
}

.role {
	font-weight: 500;
	color: black !important;
	background-color: rgb(255, 255, 255, 0.8);
	display: inline-block;
	padding: 0.3rem;
	border-radius: 0.3rem;
	box-shadow: rgb(15 15 15 / 5%) 0px 0px 0px 1px,
		rgb(15 15 15 / 5%) 0px 2px 4px;
}

footer {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	padding: 1.5rem;
	background-color: #28292e;
	color: white;
}

footer p {
	opacity: 70%;
}

.foot-links {
	display: flex;
	flex-direction: row;
	gap: 0.7rem;
}

.f-link a {
	color: #bcbdbe;
	font-size: 1.2rem;
	margin-right: 2rem;
	transition: all 0.2s ease-in-out;
}

.f-link a:hover {
	cursor: pointer;
	color: #efba00;
	transition: all 0.2s ease-in-out;
}

#mobile_menu {
	display: none;
}

@media only screen and (max-width: 1300px) {
}

@media only screen and (max-width: 1000px) {
	#nav {
		display: none;
	}
	#mobile_menu {
		display: block;
	}

	.team-content {
		margin-top: 3rem;
		margin-bottom: 3rem;
		align-items: none;
		height: auto;
	}
	.team-content h1 {
		text-align: center;
	}
	.team-content h3 {
		text-align: center;
	}

	.line {
		display: none;
	}
	.member-text {
		text-align: center;
	}
}
@media only screen and (max-width: 600px) {
	footer {
		text-align: center;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 1rem;
	}
}
