body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

header {
    background-color: #e1af18;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2em;
    height: 50px;
}

.logo-container img {
    height: 80px;
    width: auto;
    margin-left: 20px;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0 15px;
    font-size: 1.2em;
    font-weight: bold;
}

.nav-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: black;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.nav-button:hover {
    background-color: #e1af18;
    color: black;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
    text-align: center;
}

.gallery-item {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.gallery-item h1 {
    font-size: 1.5em;
    margin: 10px 0 5px;
}

.gallery-item p {
    font-size: 1em;
    color: #333;
}

footer {
    background-color: #e1af18;
    color: rgb(0, 0, 0);
    text-align: center;
    padding: 10px 0px; 
    position: fixed;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer h4, footer h3 {
    margin: 0;
    font-size: 14px;
}

footer h4 {
    text-align: right;
    padding-right: 10%;
    font-size: 14px;
}

footer h3 {
    text-align: left;
    padding-left: 10%;
    font-size: 14px;
}