body {
    margin: 0;
    background-color: #ffffff;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    background-attachment: scroll;
    color: #444444;
    font-family: Arial, sans-serif;
}


/* Main container */

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}


/* Header */

header {
    background-color: #ffffff;
    border-bottom: 1px solid #dddddd;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


/* Logo */

.logo {
    font-family: Georgia, serif;
    font-size: 28px;
    color: #b5873b;
}

.logo span {
    display: block;
    margin-top: 4px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #777777;
}


/* Navigation */

nav a {
    color: #555555;
    text-decoration: none;
    margin-left: 25px;
    text-transform: uppercase;
}

nav a:hover {
    color: #b5873b;
}
.nav_color{
    color: #b5873b;
}

/* Content */

.content {
    min-height: 150px;
}

.content p {
    font-size: 0.95em;
    line-height: 1.5;
    margin-top: 0;
    margin-bottom: 0.4em;
}
.content .p0 {
    font-size: 0.95em;
    line-height: 1.5;
    margin-top: 0;
    margin-bottom: 0em;
}

.content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0px auto;
}
.content .space {
    height: 0.4em;
}
.content h2 {
	margin-bottom:0.2em;
}
.content h3 {
	margin-bottom:0.2em;
}
a{
	text-decoration:none;
	color: #8b6b35;
}
/* Footer */

footer {
    border-top: 1px solid #dddddd;
    color: #777777;
    text-align: center;
}
#gallery {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
}

#gallery img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0;
    opacity: 0;
    transition: opacity 1s ease;
    cursor: pointer;
}

#gallery-left,
#gallery-right {
    position: absolute;
    top: 0;
    width: 20%;
    height: 100%;
    z-index: 10;
    cursor: pointer;
    transition: background-color 0.3s;
}

#gallery-left {
    left: 0;
}

#gallery-right {
    right: 0;
}

#gallery-left:hover,
#gallery-right:hover {
    background-color: rgba(0, 0, 0, 0.12);
}


@media (max-width: 600px) {

    #gallery {
        aspect-ratio: 3 / 2;
    }

    #gallery-left,
    #gallery-right {
        width: 25%;
    }

}

/* Mobile */

@media (max-width: 600px) {

    .container {
        padding: 15px;
    }

    .header {
        display: block;
        text-align: center;
    }

    .logo {
        font-size: 32px;
    }

    nav {
        margin-top: 20px;
    }

    nav a {
        display: block;
        margin: 10px;
    }

	#gallery {
        height: 300px;
    }

    #gallery-left,
    #gallery-right {
        width: 25%;
    }
}