/* Basic CSS resets -- leveling slight inconsistencies in browsers */
html, body {
	margin:0px;
	padding:0px;
	height:100%;
}

html {
		/* Standard text-settings below */
	font-size: 1em;
    line-height: 1.4em;
}


@font-face {
  font-family: ImFell;
  src: url(IMFell.ttf);
}


/* Mobile First CSS: we'll design for phone sizes first, then add media queries for larger screens later */

body {
    background:#aed6b2;
	font-family: ImFell;
	
}


#container {
    align-content:center;
	background:#ffff;
    max-width:700px;
    margin:auto;
    text-align:center;
    padding:50px;
}



nav ul{
    list-style:none;
    padding-left:0px;
}

nav.horizontal li{
    display:inline;
}


nav a{
    color:;
    text-decoration:none;
    background:#aed6b2;
    padding:5px;
    margin:5px;
    display:inline-block;
    width:150;
    text-align:center;
    border-radius:4px;
    color:black;
    transition: border-radius .75s;
    
}
 

nav a:hover{
    
    background:#367d51;
    border-radius:6px;
    
    
}

p.name{
    text-align:left;
    
}


img.behind{
    
    width:100%;
    
    
}


img.logo{
    width:40%;
    
}

img.pinkflower{
    width:100%;
}


h1:{
    text-align:center;
    background:#367d51;
}


figcaption{
    font-size:12px;
}


footer{
    text-align:right;
    padding-top:20px;
    padding-bottom:0px;
    padding-right:10px;
    font-size:12px;
}

form{
    text-align:left;
    
}





/* ========================================
MEDIA QUERIES!
You can adjust the min-width numbers below, and add as many new media queries as you need.
======================================== */
/* For mobile phones:*/
img{
    width:100%;
}


/* Minimum width for laptops. */
@media all and (min-width: 769px) {
	
	
	
    #container{
        width:700px;
        background:#ffff;
    }
    
    img{
        width:100%;
    }
	
} /* closes 769px+ */




/* Minimum width for desktop screens. */
@media all and (min-width: 1024px) {
	
    #container{
        width:700px;
        background:#ffff;
    }
    
    img{
        width:100%;
    }
	
	
} /* closes 1024px+ */



