/* 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.5em;
}


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: #FFA600;
    color: #201508;
}


/* Mobile First CSS: we'll design for phone sizes first, then add media queries for larger screens later */

body {
	background: #f7fff0;
	font-family: Outfit, sans-serif;
    color: #201508;
}


#container {
	
}


main{
    padding-left: 30px;
    
}

header{
    background: #fff5e7;
}

p.button{
    text-align: center;
}

h1{
    padding-left: 100px;
    padding-top: 15px;
    cursor: pointer;
    
}

h2{
    color: #FFA600;
    font-size: 2em;
    letter-spacing: 1.5px;
}

h3{
    font-size: 1.5em;
    text-align: left;
    
}
h3.eye, h3.life{
    color: #FFA600;
    cursor: pointer
}

h3.creative {
    color: #28ce30;
    cursor: pointer;
}



p{
    padding-bottom: 10px;
    padding-right: 30px;
    line-height: 1.5em;
}


figure{
    margin: 0px;
   
   
}


figcaption{
    font-size: .7em;
    
    padding-right: 30px;
}

img.eye {
    width: 100%;
    max-width: 250px;
    height: auto;
}

img.watercolor{
    width: 100%;
    max-width: 300px;
    height: auto;
}

img.wordSearch{
    width: 400px;
    height: auto;
}

img.crow{
    width: 400px;
    height: auto;
}

button.join{
    background: #f7fff0;
    color: #FFA600;
    cursor: pointer;
    font-size: .8em;
    font-family: Outfit, sans-serif;
    padding: 8px;
    border-radius: 18px;
    border-color: #28ce30;
}

button.join:hover{
    background: #fff5e7;
}


footer {
    font-size: 0.75em;
    text-align: right;
}

a{
    text-decoration:none;
}

a.why, a.wordsearchanswers{
    color: #201508;
}



a:hover{
    color:#28ce30;
}


span.nine{
    color: #28ce30;
    font-family: Figtree, Outfit, sans-serif;
}

span.Carrots{
    color: #FFA600;
    font-family: Figtree, Outfit, sans-serif;
}

header{
    display: flex;
}


/* ========================================
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: left;
}

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: 20px;
    }
    
    header{
        display:flex;
        flex: 0 1 50%;
    }
    
    
    
    main{
        text-align: center;
        max-width: 75%;
        margin: auto;
        padding: 0px;
    }

    p{
        padding: 0px;
    }
    
    section{
        text-align: center;
        max-width: 300px;}
    

	
} /* closes 1024px+ */



