/* General Styles */
body {
    font-family: 'Anton', sans-serif;
    background: url('./images/background\ image.png') no-repeat center center fixed;
    background-size: cover;
    margin: 0;
    padding: 0;
    color: #333;
}

h1, h2, h3 {
    font-family: 'Anton', sans-serif;
    text-transform: uppercase;
    color: #333;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
}

.header-left {
    display: flex;
    align-items: center;
}

.logo {
    height: 50px;
    margin-left: 10px;
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: white;
}

/* About Us Section */
.about-us-section {
    background-color: rgba(210, 180, 140, 0.9); /* Cream-brown color */
    padding: 30px;
    width: 70%;
    margin: 50px auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-us-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-us-section p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

footer {
    background-color: black;
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 0.8rem;
    position: absolute;
    bottom:0;
    width: 100%;
}

.footer-content {
    margin: 0;
   
}