body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-rows: auto 1fr;
    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;
}

.content-container {
    display: grid;
    grid-template-columns: 1fr 2fr; 
    gap: 20px;
    align-items: center;
    padding: 20px;
    height: 80vh;
}

.figure-container {
    grid-column: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.figure-container figure {
    margin-bottom: 15px;
    text-align: center;
}

.figure-container img {
    width: 100%;
    max-width: 250px;
    border-radius: 10px;
    border: 8px solid black; 
    padding: 5px; 
    background-color: white; 
}

.text-container {
    grid-column: 2;
    display: flex;
    justify-content: center; 
    padding: 20px;
}

section, article {
    padding: 20px;
    background-color: rgb(187, 191, 181);
    border-radius: 20px;
    margin: 15px;
}

h3 {
    font-size: 24px;
}

p {
    font-size: 14px;
}

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: 18px;
}

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