@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');

/* General Styles */
body {
    font-family: 'Lato', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f9f9f9;
}

a {
    text-decoration: none;
    color: #1D1F6A;
}

h1, h2, h4 {
    color: #5E1919;
}

h2 {
    color: #A58645;
}

button {
    background-color: #CBAE58;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 5px;
}

button:hover {
    background-color: #A58645;
}

/* Header and Navigation */
#header-nav {
    
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
}

#logo img {
    max-height: 120px;
}

#text-wrapper {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 20px; /* Space between logo and text */
}

#text {
    overflow-x: auto;
    text-align: center;
    font-family: 'Lato', sans-serif;
}

nav a {
    margin: 0 15px;
    font-weight: bold;
    font-size: 18px;
}

nav a:hover {
    color: #A58645;
}

hr {
    margin: 10px 0;
    border: none;
    border-top: 1px solid #ddd;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
}
footer a {
    color: white; 
}