.header {
	background-color: var(--color-bg-accent);
	color: var(--color-font-light-super);
	display: flex;
	justify-content: center;
}

.header-container {
	align-items: stretch;
	display: flex;
	justify-content: space-between;
	max-width: 1600px;
	width: 90%;
}

.header-logo {
	align-items: center;
	display: flex;
	padding: 20px;
}

.header-title {
	align-items: center;
	color: var(--color-font-light-super);
	display: flex;
	font-size: 30px;
	font-weight: bold;
	padding: 20px;
	text-align: center;
	text-decoration: none;
}

.header-buttons {
	align-items: center;
	display: flex;
	justify-content: end;
	width: 260px;
}

.theme-icon {
	align-items: center;
	cursor: pointer;
	display: flex;
	height: 100%;
	padding: 30px;
	width: 100px;
}

.theme-icon:before {
	background: var(--theme-icon) no-repeat center;
	background-size: cover;
	content: '';
	display: block;
	height: 40px;
	width: 40px;
}

.header-item:hover {
	background-color: var(--color-bg-accent-light);
}