* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Full-width navigation bar */
.full-width-nav {
    width: 100%;
    background-color: #f8f8f8;
    position: relative;
}

.navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
}

.nav-left, .nav-right {
    position: absolute;
}

.nav-left {
    left: 20px;
}

.nav-center {
    font-size: 24px;
    font-weight: bold;
    position: relative;
}

.nav-right {
    right: 20px;
    display: flex;
}

.nav-right a {
    padding-left: 10px;
}

.navigation a:hover {
    background-color: #ddd;
}

/* Clear floats */
.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

/* Body and container styles */
body {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 100vh;
    background-color: darkgray;
    font-family: Arial, sans-serif;
}

.container {
    width: 90%;
    max-width: 800px;
    margin: auto;
    background-color: #fff;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}


header {
    text-align: center;
    margin-bottom: 20px;
}

header h1 {
    color: #000;
}

header p {
    color: #666;
}

/* Footer styles */
footer {
    text-align: center;
    color: #fff; /* Adjust footer text color */
}
