body {
	font-family: 'Open Sans', sans-serif;
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	width: 90%;
	max-width: 95%; 	
	user-select: none;
	background: #dcf0f7;
	background: rgba(220, 240, 247, 0.7) url(../img/back01.png) repeat;
}

@media only screen and (max-width: 767px) {
	body {
		max-width: 80%; /* Например, на цялата ширина на екрана */
	}
}

nav ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
	position: relative;
	z-index: 1500; /* Уверете се, че именно nav има висок z-index */
}

nav li {
	display: inline-block;
	margin-right: 20px;
}

nav a {
	text-decoration: none;
	color: white;
}

#headerContainer {
	background-image: url('../img/header 2.jpg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%; /* Използвайте cover, за да запълните целия екран */
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 170px;
	text-align: center;
	z-index: 1000;
	border: 2px groove #483D8B;	
	box-shadow: 4px 4px 8px rgba(66, 88, 168, 0.5);	
}

#headerContainer img{
	box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
	padding: 6px 20px 6px 20px;
}

#menuContainer {
	position: absolute;
	top: 100px; /* Adjust the top position based on the height of the headerContainer */
	width: 100%;
	height: 50px; /* Set the height of the menuContainer */
	text-align: center;
	z-index: 1000;
	min-width: 700px;	
}

#contentContainer {
	position: relative;
	top: 80px; /* Adjust the top position based on the height of the headerContainer and menuContainer */
	width: 95%;
	z-index: 500; /* Lower z-index for the home content */
	word-wrap: break-word;
	left: 50px;
	margin-right: 50px;
	margin-bottom: 150px;
}

#contentFooter {
	background-image: url('../img/header 2.jpg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%; /* Използвайте cover, за да запълните целия екран */	
	background-color: #00688B;
	color: #00688B;
	text-align: center;
	line-height: 20px; /* Adjust the line-height to vertically center text */
	position: fixed;
	bottom: 0;
	width: 100%;
	z-index: 1000;
	left: 0px;
	padding-top: 15px;
	padding-bottom: 15px;	
	border: 2px groove #483D8B;
	text-shadow: 1px 1px 1px #000;
}
