/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	/* border: 0; */
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
html{
    font-size: 62.5%;
}
body {
    line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* End of reset */

* {
    /* border: 1px solid black; */
    box-sizing: border-box;
}

/* Replaced by Alecsandra's header styling below */

/* header {
    background-color: #fff9ef;
    color: #757c57;
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 4% 2%;
}

h1 {
    font-family: "Playfair Display", serif;
    font-size: 3rem;
}

nav {
    width: 40%;
    display: flex;
    justify-content: space-evenly;
}

nav a {
    text-decoration: none;
    font-family: Spartan, sans-serif;
    font-size: 1rem;
    color: black;
} */

.about {
    font-family: Spartan, sans-serif;
    background-color: #B2AD74;
    color: white;
    padding: 3%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

h2 {
    font-size: 2.3rem;
    margin-bottom: 3%;
}

.steps {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.step {
    display: flex;
    flex-direction: column;
    width: 32%;
    align-items: center;
}

.step img {
    width: 90%;
    margin-top: 10%;
}

.about p {
    font-size: 1.2rem;
    margin: 3% 0;
    line-height: 2rem;
}

h3 {
    font-size: 1.6rem;
}

.first-plants {
    background-image: url(./images/green-leaf-plant-with-pots-3076897.jpg);
    height: 200px;
    background-size: cover;
}

.sign-up {
    width: 100%;
    text-align: center;
    padding: 3%;
}
.sign-up h2 {
    font-family: "Playfair Display", serif;
}

.sign-up p {
    font-size: 1.2rem;
    font-family: Spartan, serif;
    margin-bottom: 3%;
}

.sign-up a {
    font-size: 1.2rem;
    font-family: Spartan, serif;
    color: #fff9ef;
    background-color: #757c57;
    padding: 1%;
    border-radius: 10px;
    text-decoration: none;
}

.second-plants {
    background-image: url(./images/green-potted-cactus-plants-2138073.jpg);
    height: 200px;
    background-attachment: fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.team {
    background-color: #FFF9EF;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    width: 100%
}

.team-member {
    width: 30%;
    /* max-width: 400px; */
    text-align: center;
    font-family: Spartan, sans-serif;
    padding: 2%;
}

.team-member img {
    border-radius: 50%;
    width: 90%;
}

.team-member h3 {
    text-transform: uppercase;
    margin: 2% 0;
    padding: 1% 0;
}

h4 {
    font-size: 1.4rem;
}

@media(min-width: 1200px) {
    .steps {
        max-width: 1120px;
    }
}

/* Header: */
.topContainer{
    display:flex;
    justify-content: space-around;
    align-items: center;
    height: 90px;
    background-color: #757c57;
}
.topContainer .title p{
    font-family: 'Open Sans Condensed', sans-serif;
    letter-spacing: 1.33rem;
    line-height: 1.5rem;
    font-size: 2rem;
    color: #fff9ef;
}
.topContainer .title h1{
    font-family: 'Playfair Display', serif;
    color: #fff9ef;
    letter-spacing: .75rem;
    font-size: 3.5rem;
}
.topContainer nav{
    width: 55%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 1%;
}
.topContainer nav a{
    color:#fff9ef;
    padding: 1% .8% 1% 2.5%;
    text-decoration: none;
    font-size: 2rem;
    font-family: 'Open Sans Condensed', sans-serif;
    letter-spacing: .5rem; 
}
.topContainer nav a:hover{
    background-color: #fff9ef;
    color: #757c57;
    padding: 1% .8% 1% 2.5%;
    border-radius: 5%;
}

.toggle {
    display: none;
    width: 50px;
    height: 50px;
    font-size: 4rem;
}
#toggle {
    display: none;
}

footer {
    background-color: #757c57;
    height: 9vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    letter-spacing: 0.8rem;
    color: #fff9ef;
  }
  footer .fa {
    padding: 20px;
    font-size: 2rem;
    width: 0.5%;
    text-decoration: none;
  }
  footer .fa-facebook {
    color: #fff9ef;
  }
  footer .fa-twitter {
    color: #fff9ef;
  }
  footer .fa-instagram {
    color: #fff9ef;
  }

@media(max-width: 788px) {
    .team-member {
        width: 50%;
    }
    footer {
        font-size: 3vw;
        letter-spacing: 1px;
    }
}

@media(max-width: 830px) {
    .title {
        padding-left: 10px;
    }
    .toggle {
        display: block;
        order: 2;
    }
    .topContainer {
        justify-content: space-between;
    }
    .topContainer nav {
        display: none;
    }
    #toggle:checked + nav {
        display: flex;
        flex-direction: column;
        order: 1;
        background-color: #757c57;
        margin-top: 100px;
        line-height: 3rem;
        z-index: 1000;
    }
}

@media(max-width: 500px) {
    .team-member {
        width: 48%;
    }
    .step {
        width: 51%;
        padding: 2% 0;
    }
    footer {
        background-color: #757c57;
        height: 9vh;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 1rem;
        letter-spacing: 0.5rem;
        color: #fff9ef;
    }
    footer .fa {
        padding: 20px;
        font-size: 2rem;
        width: 0.5%;
        text-decoration: none;
    }
    footer .fa-facebook {
        color: #fff9ef;
    }
    footer .fa-twitter {
        color: #fff9ef;
    }
    footer .fa-instagram {
        color: #fff9ef;
    }
}