/*
 * Copyright (C) 2026 Davyd Stalytenko
 *
 * This file is part of zld-portfolio.
 *
 * zld-portfolio is free software: you can redistribute it and/or modify it under the terms of
 * the GNU General Public License as published by the Free Software Foundation,
 * either version 3 of the License, or any later version.
 *
 * zld-portfolio is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 * See the GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License along with zld-portfolio.
 * If not, see <https://www.gnu.org/licenses/>.
 *
 */


* {
	box-sizing: border-box;
	color: inherit;
	border-color: inherit;
	font-size: inherit;
}

body {
	background-color: #191A25;
	color: white;
	margin: 0px;
	padding: 0px;
	font-size: 20px;
}

.content_wrapper {
	display: flex;
	flex-direction: column;
	justify-content: top;
	align-items: center;
}

.content_wrapper>* {
	width: 1320px;
}

.header {
	background-color: gray;
	width: 100%;
	display: flex;
	justify-content: center;
	padding: 0 20px;
	top: 0px;
	position: sticky;
}

.header-content {
	padding: 20px 0;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	width: 1320px;
	font-size: 1em;
}

.header-label {
	margin: 0;
	padding: 6px 6px;
	border-width: 3px;
	border-style: solid;
	border-radius: 5px;
}

.footer {
	background-color: gray;
	width: 100%;
	display: flex;
	justify-content: center;
}

.footer-content {
	padding: 20px 20px;
	display: flex;
	flex-direction: row;
	gap: 30px;
	width: 1320px;
}

.footer-label {
	font-size: 1em;
	color: black;
}

.menu {
	margin: 0;
	padding: 0;
	position: relative;
}

.menu_item {
	margin-top: 4px;
	text-decoration: none;
	border-radius: 5px;
	padding: 5px 10px;
	background-color: black;
	color: white;
}

.menu_item:hover {
	background-color: #171A3F;
	padding: 6px 11px;
}

.menu_item-main {
	margin: 0;
	padding: 6px 15px;
	border-width: 3px;
	border-style: solid;
	border-radius: 5px;
}

.menu_items_wrapper {
	display: none;
	position: absolute;
	top: 100%;
	margin-top: 15px;
	width: fit-content;
	flex-direction: column;
	align-items: center;
	padding: 6px 6px;
	border-width: 3px;
	border-style: solid;
	border-radius: 5px;
}

.menu-show .menu_items_wrapper {
	display: flex;
}

.menu-fixed>.menu_items_wrapper {
	width: 100%;
}

.theme-light .menu_items_wrapper {
	background-color: gray;
}

.theme-dark .menu_items_wrapper {
	background-color: black;
}

.theme-light {
	color: black;
	border-color: white;
}

.theme-dark {
	color: white;
	border-color: black;
}

.icon-big {
	width: 40px;
	height: 30px;
	display: inline-block;
	background-image: url(/static/icon-big.png);
	background-size: contain;
	background-repeat: no-repeat;
}

#webversion {
	display: flex;
	align-items: center;
}
