* {
	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;
}

.news-container {
	display: flex;
	justify-content: center;
	flex-direction: column;
	gap: 2.3rem;
	align-items: center;
	color: white;
	padding-top: 8rem;
	padding-left: 3rem;
	padding-right: 3rem;
	padding-bottom: 6rem;
}

.news-post {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	text-align: center;
	max-width: 40rem;
	gap: 1rem;
	background-color: #28292e;
	padding: 2.5rem;
	border-radius: 2rem;
	box-shadow: 0px 0px 5px 3px rgb(0, 0, 0, 0.2);
}

#icon {
	margin-right: 1rem;
}

.news-post a {
	color: white;
	text-decoration: none;
	transition: all 0.3s ease-in-out;
}

.news-post a:hover {
	color: #efba00;
}

.news-post p {
	opacity: 70%;
}

.news-post img {
	width: 100%;
	height: 100%;
	max-height: 20rem;
	max-width: 40rem;
	object-fit: cover;
	margin-top: 1rem;
	margin-bottom: 1rem;
	border-radius: 1rem;
}

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;
	}

	.news-container {
		padding-top: 2rem;
	}
}
@media only screen and (max-width: 600px) {
	footer {
		text-align: center;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 1rem;
	}
}
