/* Basic CSS resets -- leveling slight inconsistencies in browsers */
html, body {
	margin:0px;
	padding:0px;
	height:100%;
}

html {
		/* Standard text-settings below */
	font-size: 1.2em;
    line-height: 1.4em;
}


figure.logo{
    width: 30px;
    height: auto;
    padding: 20px;
    padding-left: 30px
}

nav.navigation{
    background: #28CE30;
    padding: 10px;
    display: flex;
    flex-direction:column;
}

a.about, a.membership, a.retreats, a.merch, a.contact {
    color: #f7fff0;
    padding: 10px;
    text-align: center;
}

a.about:hover, a.membership:hover, a.retreats:hover, a.merch:hover, a.contact:hover{
    background: orange;
    color: #201508;
}

/* Mobile First CSS: we'll design for phone sizes first, then add media queries for larger screens later */

body {
	background: #fff5e7;
	font-family: Outfit, sans-serif;
    color: #201508;
}


#container {
	
}

h1{
    padding-left: 100px;
    padding-top: 15px;
    cursor: pointer;
    
}

h2{
    color: #28CE30;
    font-size: 2em;
    padding-left: 30px;
    letter-spacing: 1.5px;
}


p{
    padding-left: 30px;
    padding-bottom: 10px;
    padding-right: 30px;
    line-height: 1.5em;
}


figure{
    padding: 0px;
    margin: 0px;
    text-align: center;
}


figcaption{
    font-size: .8em;
}

img {
    width: 100%;
    max-width: 600px;
    height: auto;
}

img.wordSearch{
    width: 400px;
    height: auto;
}

button.wordsearchanswers{
    background: #f7fff0;
    color: #FFA600;
    cursor: pointer;
    font-size: .8em;
    font-family: Outfit, sans-serif;
    padding: 8px;
    border-radius: 18px;
    border-color: #28ce30;
}

button.wordsearchanswers:hover{
    background: #FFA600;
}

button.why{
    background: #FFA600;
    color: #201508;
    cursor: pointer;
    border: none;
    border-radius: 25px;
    border-width: 100%;
    font-size: 1.2em;
    padding: 15px;
    font-family: Figtree, Outfit, sans-serif;
    
}

footer {
    font-size: 0.75em;
    text-align: right;
}

a{
    text-decoration:none;
}

a.why, a.wordsearchanswers{
    color: #201508;
}

a.download:hover{
    color: #28ce30;
    
}

a:hover{
    color:#f7fff0;
}


span.nine{
    color: #28ce30;
    font-family: Figtree, Outfit, sans-serif;
}

span.Carrots{
    color: #FFA600;
    font-family: Figtree, Outfit, sans-serif;
}

header{
    display: flex;
    background: #f7fff0;
}

/* ========================================
MEDIA QUERIES!
You can adjust the min-width numbers below, and add as many new media queries as you need.
======================================== */



/* Minimum width for laptops. */
@media all and (min-width: 769px) {
	
	
	
	
} /* closes 769px+ */




/* Minimum width for desktop screens. */
@media all and (min-width: 1024px) {
    
body{
        background: #f7fff0;
}
	
figure{
    padding: 0px;
    margin: 0px;
    text-align: center;
}

figcaption{
    font-size: .8em;
}

img {
    width: 100%;
    max-width: 750px;
    height: auto;
}
    
nav.navigation {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
    }
    
    
    
    h2{
        text-transform: capitalize;
        letter-spacing: 15px;
    }
    
    header{
        display:flex;
        flex-wrap: wrap;
       text-align: center;
        background: #fff5e7;
    }
    
    nav.hidden{
        text-align: right;
    }
    figure.wordSearch{
        
    }
    
    main{
        text-align: center;
    }
    
    p{
       padding-left: 250px;
    padding-right: 250px;
        margin: auto;
    }
	
} /* closes 1024px+ */



