body {
	font-family: Arial, sans-serif;
	background-image: url('../img/bg03.jpg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
    padding-left: 5px;
	padding-right: 5px;
	line-height: 1.3;
}
.header {
	color: #0052cc;
	padding: 20px;
	font-size: 30px;	
	font-family:"Baskerville Old Face";
	font-weight:bold;
	text-shadow: 4px 4px 4px #1a75ff;	
}
img {
  max-width: 100%; /* Ensures the image never exceeds the width of its parent container */
  height: auto;    /* Maintains the image's aspect ratio by adjusting the height proportionally */
}
.container {
	max-width: 800px;
	margin: auto;
	padding: 20px;
}
nav {
	background-color: #0052cc;
	padding: 0;
}
nav ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
	display: none;
	flex-direction: column;
}	
nav ul li {
	position: relative;
	text-align: left;
}
nav ul.show {
	display: flex;
}	
nav ul li a {
	color: white;
	text-decoration: none;
	padding: 10px;
	display: block;
	background-color: #1a75ff;
}

nav ul li a:hover {
	background-color: #005ce6;
}

nav ul li:hover .submenu {
	display: block;
}
.submenu {
	display: none;
	background-color: #80b3ff;
	list-style: none;
	padding: 0;
	text-indent: 10px;
	margin: 0;
}
.submenu li a {
	padding: 10px;
	display: block;
	color: white;
}
.submenu li a:hover {
	background-color: #4d94ff;
}
.menu-toggle {
	display: block;
	background-color: #0052cc;
	color: white;
	padding: 10px;
	cursor: pointer;
}
.footer {
	background-color: #6666ff;
	color: white;
	padding: 10px;
	position: relative;
	bottom: 10;
	width: 100%;
	text-align: center;
}
