html {
	height: 100%;
	width: 100%;

	--primary-color: #d84047;
}

body {
	width: 100%;
	margin: 0;
	padding: 0;
	font-family: "Arial", sans-serif;
	background-color: #1a1a1a;
	color: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color-scheme: dark light;
}

* {
	text-select: none;
	-webkit-user-select: none;
}

header {
	position: absolute;
	top: 0;
	left: 0;
	width: -webkit-fill-available;
	border-bottom: 0.5px solid rgba(68, 68, 68, 0.65);
	padding-left: 150px;
	padding-right: 150px;
	padding-top: 6px;
	padding-bottom: 6px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header a {
	text-decoration: none;
	color: #fff;
}

header h1 {
	font-size: 16px;
	font-weight: 500;
}

header h1 img {
	width: 35px;
	height: 35px;
	vertical-align: middle;
	border-radius: 30%;
	margin-right: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

header nav ul {
	list-style: none;
	display: flex;
	gap: 20px;
	margin: 0;
	padding: 0;
	cursor: pointer;
	flex-direction: row;
}

header nav ul li a {
	color: #fff;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	transition: color 0.3s ease;
}

header nav ul li a:hover {
	color: var(--primary-color);
}

header.sticky {
	position: fixed;
	top: 0;
	left: 0;
	width: -webkit-fill-available;
	z-index: 1000;
	background-color: #1a1a1a;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (any-pointer: coarse) {
	header {
		padding-left: 10px;
		padding-right: 10px;
	}

	header h1 {
		font-size: 0px;
	}
}