body {
	max-width: 100%;
	min-height: 100%;
	background-image: url('static/Background5.jpg');
	background-size: cover;
    background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
    background-color: #699087;
	overflow-y: auto;
	overflow-x: auto;
    font-family: "Georgia", 'sans-serif';
	color: #000;
	font-size: 20px;
	box-sizing: border-box;
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

div.topnav {
	position: fixed;
	width: 100%;
	background-color: #000;
	top: 0;
	margin-bottom: 10px;
	z-index: 2;
}

div.topnav #home-button {
	padding-left:30px;
}

div.topnav a {
	float: left;
	color: #fff;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
	font-size: 17px;
}

div.topnav a:hover {
	background-color: #fff;
	color: #000;
}

div.topnav a.active {
	background-color: #9a8100;
	color: #fff;
}

/* Logo on the left */

div.logo-left {
	position: fixed;
	z-index: 1;
	margin-left: 50px;
	margin-top: 00px;
}

img.logo {
	width: 40%;
}

/* Page content on the  right */

div.content {
	position: relative;
    background-color: #fff/*rgba(255, 255, 255, 0.6)*/;
	left: 280px; 
	width: 70%;
    right: 0;
    padding-top: 5px;
	padding-bottom: 5px;
	padding-left: 25px;
	padding-right: 25px;
    border: none;
	margin-top: 80px;
	margin-right: 50px;
	margin-bottom: 50px;
	z-index: 1;
}
	
div.content a {
	color: #9a8100;
	text-decoration: none;
}

div.content a:hover {
	color: #000;
	text-decoration: underline;
}
	
/* For screens smaller than 768px (typical mobile devices) */
@media only screen and (max-width: 1080px) {
	
	/* Make topnav fit screen */
	div.topnav a {
	padding: 14px 8px;
	}
	
	div.topnav #home-button {
	padding-left: 14px;
	}
	
    /* Center the logo */
    div.logo-left {
        position: relative;
        margin: 0 auto; /* Center horizontally */
        text-align: center;
        margin-top: 60px;
		margin-bottom: 0px;
    }
	
	img.logo {
	width: 30%;
	}

    /* Move content below the logo */
    div.content {
    position: static;
    background-color: rgba(255, 255, 255, 0.6);
    margin: 0 auto; /* Center horizontally */
	margin-top: 20px;
	margin-bottom: 50px;
	max-width: 90%;
    z-index: 1;
    }
}

/* Pics */

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr)); /* Adjust the size of grid items */
    grid-gap: 10px; /* Adjust the gap between grid items */
}

.grid-item img {
    width: 100%; /* Make sure images fill the grid items */
    height: auto; /* Maintain aspect ratio */
}

	
/* Footer */

footer {
	position: static;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	color: #fff;
	background: #000;
	padding-top: 15px;
	padding-bottom: 15px;
	z-index: 3;
}

footer p {
	font-size: 18px;
	margin-left: 30px;
	margin-right: 30px;
	margin-top: 15px;
	margin-bottom: 15px;
}

#footer_contact a {
	text-decoration: none;
	color: #fff;
}

#footer_contact a:hover {
	text-decoration: none;
	color: #9a8100;
}

#footer_extra p {
	font-size:14px;
	color: #8d8d8d;
}

#footer_extra a {
	text-decoration: none;
	color: #8d8d8d;
}

#footer_extra a:hover {
	color: #9a8100;
}
