*{
    margin: 0;
    padding: 0;
    
}

body {
    background: white;
}

h1{
    color: greenyellow;
}

nav{
    background-color: #53731F;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

ul{
    display: flex;
    list-style: none;
    gap: 1rem;
}

a{
    text-decoration: none;
    color: white;
}

a:hover {
    color: black;
}

@media (max-width: 680px) {
    nav{
        flex-direction: column;
        gap: 3rem;
    }

ul{
    flex-direction: column;
    order: 1;
    font-size: 1.5rem;
    gap: 1.5rem;
}
}

h2{
    margin: 20px;
    padding: 20px;
    font-size: 3rem;
    text-align: center;
    color: #fff;
    font-family: Helvetica, sans-serif;

}

.about-us p{
    display: flex;
    margin: 100px;
    font-size: 1.2em;
    line-height: 2em;
    text-align: left;
    color: #38125c;
    font-family: Helvetica, sans-serif;
}
