/* GENERAL */
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    background: green;
    color: white;
    padding: 15px;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin: 0 10px;
}

.nav-links a {
    color: white;
    text-decoration: none;
}

/* CONTACT */
.contact {
    padding: 40px;
    text-align: center;
}

.contact form {
    max-width: 400px;
    margin: auto;
}

.contact input,
.contact textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
}

.contact button {
    background: green;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}

/* FOOTER */
footer {
    background: green;
    color: white;
    text-align: center;
    padding: 15px;
}