@font-face {
    font-family: 'Ethnocentric';
    src: url('../fonts/ethnocentricrg.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 0;
}

header {
    background-color: #666;
    padding: 20px 0;
    text-align: center;
}

header .logo {
    display: block;
    margin: 0 auto;
    width: 80%; /* Responsive width for logo */
    max-width: 500px;
    height: auto;
}

h1, h2, nav ul li a, footer p {
    font-family: 'Ethnocentric', Arial, sans-serif;
}

nav {
    background-color: #333;
    padding: 10px 0;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2em;
}

.container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
}

section {
    margin-bottom: 40px;
}

h2 {
    font-size: 1.8em;
    margin-bottom: 10px;
    color: #222;
}

p {
    font-size: 1.1em;
    line-height: 1.6;
    font-family: 'Roboto', Arial, sans-serif;
}

footer {
    background-color: #222;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

footer p {
    font-family: 'Ethnocentric', Arial, sans-serif;
    margin: 0;
}

/* Media Queries for Responsive Design */
@media (max-width: 768px) {
    nav ul li {
        display: block;
        margin: 10px 0;
    }

    nav ul li a {
        font-size: 1.5em;
    }

    h2 {
        font-size: 1.5em;
    }

    .container {
        padding: 0 10px;
    }

    header .logo {
        width: 90%; /* Increase logo width slightly on smaller screens */
    }
}
.button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1.2em;
    font-family: 'Ethnocentric', Arial, sans-serif; /* Use Ethnocentric font for the button */
    color: #fff;
    background-color: #333;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
}

.button:hover {
    background-color: #555;
}
