:root {
	--color-bg-light: #3a3d49;
	--color-bg-light-hover-lighter: #404450;
	--color-bg-medium: #2c2f39;
	--color-bg-dark: #272a34;
	--color-bg-dark2: #1f222b;
}

body,
html {
	margin: 0;
	padding: 0;
	overflow: hidden;
}

.page-container {
	height: 100vh;
	width: 100vw;
	display: flex;
	flex-direction: column;
	background-color: var(--color-bg-light);
}

.header-container {
	color: pink;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 60px;
	background-color: var(--color-bg-dark2);
	padding: 0.5rem;
	gap: 1rem;
}

.header-container .header-left,
.header-container .header-right {
	display: flex;
	align-items: center;
	gap: 0.7rem;
}
