:root{
    --mainGreen:#527a57;
    --walnut: rgba(90, 60, 40, 0.8);
}

body{
    margin: 0;
    padding: 0;
    background-color: whitesmoke;
    font-family: 'Manrope', sans-serif;
    hyphens: auto;
}

/* Global header for each section */
.landingHeader{
    color: var(--walnut);
    font-size: clamp(3.5rem, 5vw, 4.5rem);
    -webkit-text-stroke: 0.25px black; /* Chrome, Safari */
    text-align: left;
}
.sectionHeader {
    font-size: 2.5rem;
}

.aboutUs .sectionHeader {
    padding-bottom: 2rem;
}

/* NavBar */
nav {
    display: flex;
    margin: 0 auto;
    justify-content: space-between;
    align-items: center;
    
    padding: 2rem 5rem;
}

nav .nav-left,
nav .nav-center,
nav .nav-right {
    flex: 1;
    display: flex;
    align-items: center;
}

nav .nav-left {
    justify-content: flex-start; /* Help on the left */
}

nav .nav-center {
    justify-content: center; /* Centered title */
}

/* Positions the menu (language selector) on the far right */
.navbar-menu {
    position: absolute;
    right: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Styles for the language selector */
select {
    all: unset;
    appearance: none;
    font-size: clamp(16px, 1vw, 25px);
    transition: all .2s ease-in-out;
    cursor: pointer;
    color: var(--mainGreen);
}

nav .help-link {
    color: white;
    font-size: 1.2em;
    font-weight: 450;
    text-decoration: none;
    cursor: pointer;
    margin: 0;
}

nav .help-link:hover {
    text-decoration: underline;
}

nav h1 {
    color: var(--mainGreen);
    font-size: clamp(1.3em, 3vw, 1.7em);
    margin: 0;
    line-height: 1;
}
