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: 100px;
	padding-right: 100px;
	line-height: 1.3;
}
.header {
	color: #0052cc;
	padding: 20px;
	font-size: 60px;	
	font-family:"Baskerville Old Face";
	font-weight:bold;
	text-shadow: 4px 4px 4px #1a75ff;	
}
.container {
	max-width: 800px;
	margin: auto;
	padding: 20px;
}
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 */
}
.menu-toggle {
	display: none;
	
	position: sticky;
	top: 0px;
	
}
nav {
	background-color: #6666ff;
	padding: 10px;
	
	position: sticky;
	top: 0px;
	
}
nav ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
	display: flex;
	justify-content: center;
}
nav ul li {
	position: relative;
	margin: 0 15px;
}
nav ul li a {
	color: white;
	text-decoration: none;
	padding: 10px;
	display: block;
}

#nav-menu li:hover {
	background-color: #1a75ff;
}

nav ul li:hover .submenu {
	display: block;	
}
.submenu {
	display: none;
	position: absolute;
	background-color: #80b3ff;
	list-style: none;
	padding: 0;
	margin: 0;
	top: 100%;
	left: 0;
	width: 150px;
}
.submenu li {
	margin: 0;
	padding: 0;
}
.submenu li a {
	padding: 10px;
	display: block;
	color: white;
}
.submenu li a:hover {
	background-color: #4d94ff;
}
.footer {
	background-color: #6666ff;
	color: white;
	padding: 10px;
	position: relative;
	bottom: 10;
	width: 100%;
	text-align: center;
}
