:root {
	--primary-color: #3c73a8;
	--bg-light: #f0f2f5;
	--text-light: #1c1e21;
	--muted-light: #606770;
	--bg-dark: #1a1a1a;
	--text-dark: #d0d0d0;
	--muted-dark: #aab0b6;
}

@media (prefers-color-scheme: dark) {
	body {
		background-color: var(--bg-dark);
		color: var(--text-dark);
	}
}

@media (prefers-color-scheme: light) {
	body {
		background-color: var(--bg-light);
		color: var(--text-light);
	}
}

@font-face {
	font-family: Ethnocentric;
	font-style: normal;
	font-weight: 400;
	src: local("Ethnocentric"), url("fonts/Ethnocentric.otf") format("opentype");
}

body {
	font-family: "Nunito Sans", sans-serif;
	margin: 0;
	height: 100dvh;
	display: flex;
	flex-direction: column;
}

.top-bar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 2rem;
	background-color: var(--primary-color);
	color: #fff;
	z-index: 1000;
}

.logo {
	font-family: "Ethnocentric", sans-serif;
	font-size: 2.5rem;
	margin-top: -12px;
	margin-bottom: 0.2rem;
}

.social-buttons {
	display: flex;
	gap: 1rem;
}

.social-btn {
	color: #fff;
	font-size: 1.5rem;
	text-decoration: none;
	transition: transform 0.3s;
}

.social-btn:hover {
	transform: scale(1.2);
}

main {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	overflow-y: auto;
}

.coming-soon {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
}

.primary-action {
	color: var(--text-dark);
	font-size: 1.1rem;
	text-decoration: none;
	padding: 1rem 3rem;
	border-radius: 0.25rem;
	background-color: var(--primary-color);
}
