@charset "utf-8";

html, body {
	margin: 0px;
	padding: 0px;
}
body {
	overflow-x: hidden;
	background-color: rgba(177,212,141,1.00);
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
    margin: 0;
    padding: 0;
}

header {
    width: 75vw;
    height: 20%;
    background-color: rgba(255, 255, 255, 1.00);
    text-align: center;
    margin: 0 auto;
    display: flex;
    align-items: center;
	flex-direction: column;
    justify-content: center;
}

nav {
	height: 100px;
    background-color: rgba(231,247,214,1.00);
	text-align: center;
	margin: 0px;
	width: 100%;
}
	nav ul {
    	list-style-type: none;
    	display: flex;
    	justify-content: space-around;
    	align-items: center;
    	height: 100%;
	}

	nav ul li {
		margin: 10px;
	}

	nav ul li ul {
		flex-direction: column;
	}

	nav ul li a {
		height: 45px;
    	display: flex;
    	color: rgba(104,67,35,1.00);
    	font-size: 1.5rem;
    	font-weight: bold;
    	text-decoration: none;
		margin: 10px 0px 0px 0px;
	}

			nav ul li a:hover {
				color: rgba(15,50,8,1.00);
	}

h1 {
	color: rgba(15,50,8,1.00);
	font-size: 4rem;
	letter-spacing: 0.5rem;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}

img {
    width: 30%;
    height: auto;
    margin: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

img:hover {
    transform: scale(1.1);
}