body{
    font-family: Georgia, 'Times New Roman', Times, serif;
    height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
    background-color: #f0f0f0;
    color: #333;
}

header{
    background-color: rgb(85, 107, 47);
    height: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center; 
    justify-content: center; 
    color: white;
}

header h1{ 
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    margin: 0;
    padding: 0 10px;
}


nav{
    background-color: rgb(85, 107, 47);
    height: 40px;
    display: flex; 
    justify-content: center; 
    align-items: center;
}

nav ul{ 
    padding: 0; 
    margin: 0; 
    display: flex; 
    list-style: none; 
}

nav li{
   margin: 0 15px;
}

nav a{ 
    color: white; 
    text-decoration: none; 
    font-weight: bold; 
    font-size: 16px;
}

nav a:hover{ 
    text-decoration: underline; 
}

li{
    display: inline-block;
    list-style: none;
    height: 30px;
}

#content{
    display: flex;
    flex: auto;
    flex-direction: row;
    color: black;
    padding: 20px;
}

main{
    width: 70%;
    box-sizing: border-box;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

ul li{ 
    margin-bottom: 10px; 
}

ul{
    padding: 20px;
}

aside{
    width: 30%;
    box-sizing: border-box;
    padding: 20px;
    background-color: rgb(210, 180, 140);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-radius: 8px;
    margin-left: 20px;
    margin: 20px auto;
}

.aside-image{ 
    display: block; 
    margin-left: auto; 
    margin-right: auto; 
    width: 75%; /* Makes the image fit within the width of the aside */ 
    max-width: 75%; /* Ensures the image doesn't exceed the aside's width */ 
}

footer{
    background-color: rgb(255, 255, 240);
    color: black;
    font-size: 85%;
    flex-shrink: 0;
    text-align: center; 
    padding: 10px; 
    border-top: 1px solid #d3d3d3;
}

h1, h2{
    color: black;
    font-size: 140%;
    flex-shrink: 0;
    margin-bottom: 10px;
}

h2{
    font-size: 120%;
}

p{
    margin-bottom: 12px;
    word-spacing: 0.1em;
    line-height: 1.6;
}

pre{ 
    background-color: #f5f5f5;
    padding: 10px; 
    border: 1px solid #ccc; 
    border-radius: 5px; overflow-x: 
    auto; 
}

#menu-button{
	display: none;
}

input[type=button]{
    border:2px solid gray;
    background-color: #333333;
    border-radius: 4px;
    padding:10px;
    color:gray;
    font-weight: bold;
}

input[type=button]:hover{ 
    background-color: gray; 
    color: white; 
    cursor: pointer; 
}

#image-gallery{
    width:380px;
    margin: 0 auto;
    text-align: center;
}

#image-gallery #mainImg{
    width:100%;
    border: 2px solid #333333;
    border-radius: 10px;
}

.center-image{ 
    display: block; 
    margin-left: auto; 
    margin-right: auto; 
    text-align: center;  
}


@media all and (max-width : 800px){

    header{
        height: 44px;
    }

    #content{
        display: block;
    }

    main, aside{
        width: 100%;
        padding: 10px;
        margin: 10px 0;
    }

    #menu-button{
        position: absolute;
		top: 0;
		right: 0;
		height: 44px;
		width: 44px;
		color: beige;
		text-align: center;
		line-height: 44px;
		font-size: 150%;
		font-weight: bold;
		display: block;
    }

    nav {
		display: none;
		height: auto;
	}

	nav li{
		display: block;
	}

    nav.open{
		display: block;
	}
}