* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* NAV (FIXED FLEXBOX) */
nav {
    background-color: #69965D;
    position: fixed;
    padding: 10px 100px;
    width: 100%;
    border-bottom: 5px solid white;
    z-index: 10;

    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

nav a {
    color: white;
    font-size: 24px;
    text-decoration: none;
    font-weight: bold;
}

nav div {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

nav a:hover {
    color: #F2EDA7;
}

/* HEADER */
header {
    background-color: white;
    padding: 100px 200px;
    background-image: url("Images/LosJalapenosLogo.png");
    background-position: right;
    background-size: cover;
}
header a{

    background-color: #FB5252;
    font-weight: 700;
    color: black;
    font-size: 30px;
    text-transform: uppercase;
    border-radius: 30px;
    padding: 10px 15px;
    text-decoration: none;
}

header a:hover{
    color:#F2EDA7;
}
/* TYPOGRAPHY (unchanged) */
h1 {
    font-family: "playfair display", serif;
    color: black;
    font-size: 64px;
}

h2 {
    font-family:"playfair display";
    color: white;
    font-size: 60px;
    text-align: center;
    margin-bottom:40px;
}

h4 {
    font-family: "Rock Salt";
    color: #372D28;
    font-size: 48px;
}

h5 {
    font-family: "Sue Ellen Francisco";
    color: Black;
    font-size: 66px;
}

h6 {
    font-family: "Sue Ellen Francisco";
    color: #69965D;
    font-size: 50px;
}

/* BOXES (FIXED FLEX TARGET) */
#boxes {
    background-color: #F2EDA7;
    text-align: center;
    padding: 100px;
}
#boxes h2{
    color:#69965D;
}

#boxes > div {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

#boxes article {
    width: 250px;
    background-color: #F2EDA7;
    margin: 30px 10px;
    text-align: center;
    padding: 20px;
}

/* TO GET RID OF BULLETS */
ul{
    list-style-type: none;
}

/* MEET YOUR FARMER (IMPROVED FLEX) */
#meetyourfarmer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    /*ADD THIS */
    background-image: url(Images/aboutusbackground.png);
    background-size: cover;
    padding:100px 50px;
}
/* ADD THIS */
#meetyourfarmer p{
    max-width:600px;
}
#meetyourfarmer img{
    margin-right:40px;
}

/* PRODUCE (FIXED SELECTOR) */
#produce {
    background-image: url("Images/gallerybackground.png");
    background-color: #F2EDA7;
    padding: 100px 0;
    text-align: center;
}

#produce div {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#produce img {
    width:300px;
    margin: 10px;
    border: 1px solid white;
    max-width: 300px;
}

/* TWENTY WEEKS */
#twentyweeks {
   background-image: url(Images/ctabackground.png); 
   background-size: cover;
   padding: 150px 100px; 
   text-align: center;
}

#twentyweeks a {
    background-color: #FB5252;
    font-weight: 700;
    color: black;
    font-size: 30px;
    text-transform: uppercase;
    border-radius: 30px;
    padding: 10px 15px;
    text-decoration: none;
}
#twentyweeks a:hover{
    color:#F2EDA7;
}

/* FOOTER (FIXED FLEXBOX) */
footer {
    background-color: #69965D;
    padding: 15px 50px 5px 50px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

footer div {
    display: flex;
    gap: 10px;
}

footer div a{
    font-size:30px;
}

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

footer a:hover {
    color: #F2EDA7;
}