/* 

COLORS

blue-1000: #040439
blue-600: #1A63FF
blue-300: #98B9F7
blue-100: #DAE7FF
slate: #4F4F6D
red: #E31E24 

 */

header {
	position: absolute;
	top: 20px;
	left: 16px;
	right: 16px;

	display: flex;
	align-items: center;
	justify-content: space-between;

	background: linear-gradient(145deg, rgba(4, 4, 57, 0.3) 0%, rgba(4, 4, 57, 0.5) 50%, rgba(4, 4, 57, 0.3) 100%);
	backdrop-filter: blur(5px) saturate(120%);

	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 10px;

	padding: 10px 20px;
	z-index: 1200;
}

header .logo-container {
	display: flex;
	width: fit-content;
	height: fit-content;
}

header .logo-container .logo {
	width: 100px;
}

header .burger-icon {
	display: block;
}

@media (min-width: 1440px) {
	header {
		width: fit-content;

		justify-self: center;
		gap: 10px;
	}

	header .logo-container .logo {
		width: 135px;
	}

	header .burger-icon {
		display: none;
	}
}
