body {
    font-family: Arial;
    text-align: center;
    background: #f5f5f5;
}

h1 {
    color: #0a5c36;
}

button {
    padding: 10px 20px;
    background: green;
    color: white;
    border: none;
    cursor: pointer;
}

<style>

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #0a5c36;
    padding: 10px 20px;
    color: white;
}

.logo {
    margin: 0;
}

.menu {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
}

.menu li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.menu li a:hover {
    color: #ffcc00;
}

<>style\>