/* Reset some default browser styles */
body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, table, th, td {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Georgia', serif;
    font-size: 1.3em;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
    padding: 42px;
}

header {
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    text-align: center;
}

.style2 {
	font-size: 1.5em;
	font-variant: small-caps;
}
a {
	font-family: Georgia, Trebuchet MS;
	color: #996633;
}
a:link {
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #996633;
}
a:hover {
	text-decoration: none;
	color: #000000;
}
a:active {
	text-decoration: none;
	color: #996633;
}

.container {
    margin: auto;
    max-width: 1200px;
    padding: 10px;
}


.language-switch {
    margin-bottom: 20px;
    font-size: 0.9em;
    color: #996633;
}

/* Styling for the images and lightbox */
.gallery img {
    max-width: 100%;
    border: 5px solid #ddd;
    margin-bottom: 10px;
    transition: transform 0.3s;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    nav li {
        float: none;
        padding: 5px;
    }

    .container {
        padding: 10px;
    }
}