<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
    <meta name="keywords" content="web design, html, basic layout, coding"><meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
    <meta name="keywords" content="web design, html, basic layout, coding"><meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
    <meta name="keywords" content="web design, html, basic layout, coding"><meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
    <meta name="keywords" content="web design, html, basic layout, coding">@charset "utf-8";
/* CSS Document */@charset "utf-8";
/* CSS Document */@charset "utf-8";
/* CSS Document */@charset "utf-8";
/* CSS Document */
/* 
 *	Name: Responsive layout;
 *	Author: Leah Rosene;
 *	Website : leahrosene.com;*/



/* General Styles
--------------------------------------------- */

body {
	margin: 0;
	padding: 0;
}



/* Imports
--------------------------------------------- */




/* Helper Classes
--------------------------------------------- */

.clearfix {
	display: block;
	clear: both;
}


/* Typography
--------------------------------------------- */

body {
	font-size:18px;
	line-height: 32px;
	color: #333;
	word-wrap:break-word !important;
	font-family: 'Open Sans', sans-serif;
}

p {
	margin: 0 0 24px;
	margin: 0 0 2.4rem;
	padding: 0; 
}


/* Links
--------------------------------------------- */

a {
	text-decoration: none;
	color: #FF5722
}

a:hover {
	text-decoration: underline; 
	color: #E64A19;
}



/* Headings
--------------------------------------------- */

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Roboto Slab", sans-serif;
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 16px;
}

h1 {
	font-size: 40px; color:white;
}

h2 {
	font-size: 30px; color:black;
}

h3 {
	font-size: 24px; color:white;
}

h4 {
	font-size: 20px;
}

h5 {
	font-size: 18px;
}

h6 {
	font-size: 16px;
}



/* Sections
--------------------------------------------- */

#container{
	margin: 0 auto;
	max-width: 1200px;
}



/* Header
--------------------------------------------- */

header {
	width: 94%;
	padding: 3%;
	background-color:rgba(70,194,90,1.00);
}

header #title {
	font-size: 50px;
	color: #fff;
}



/* Navigation
--------------------------------------------- */

nav {
	width: 97%;
	background-color:rgba(75,29,29,1.00);
	padding: 0 1.5% 0 1.5%;
}

nav ul li {
	display: inline-block;
	padding: 15px 1.5% 15px 1.5% ;
}

nav ul li a {
	text-decoration: none;
	color: #ffffff;
	font-size: 1.2em;
    display:block;
}

nav ul li a:hover {
	color: #000000;
	text-decoration: none;
}
nav select {
  display: none;
}



/* Content
--------------------------------------------- */

#content {
	float: left;
	padding: 3%;
	width: 64%;
}



/* Sidebar
--------------------------------------------- */

aside {
	float: right;
	padding: 3%;
	width: 24%;
	background-color:rgba(75,29,29,1.00) ;
}
aside p{color:white}

/*Image
-----------------------------------------------*/
img{display: inline-block; margin-left:10px;}

/* Footer
--------------------------------------------- */

footer{
	width: 94%;
	padding: 3%;
	background-color:rgba(70,194,90,1.00) ;
	border-top: 5px solid white;
	color: #fff;
	text-align: center;
}



/* Media Queries
--------------------------------------------- */

@media screen and (max-width: 700px) /*Tablet*/
{
    header{text-align: center}
    nav ul li{display:flex}
    nav ul li a{text-align: center;
    float: none;
    width: 100%; height:100px;
    }
    section{width:100%;display: block;text-align: center;}
    section h2{margin-left:40%;}
    section p{width:100%;display: block;flex-direction: row;margin-left:25%;}
    aside{width:100%;text-align: center;display: block;}
    aside h3{margin-left: 10%;}
    aside p{width:100%;display: block;flex-direction: column;margin-left:2%;}
    img{width:100%;
    margin-left:2px;}
}
@media screen and (max-width: 400px) /*Phone*/   
{     
    header{text-align: center}
    nav ul li{display:flex}
    nav ul li a{text-align: center;margin-top:20px;
    float: none;
    width: 100%;
    height:100px; 
    }
    section{width:100%;display: block;text-align: center;}
    section h2{margin-left:40%;}
    section p{width:100%;display: block;flex-direction: row;margin-left:25%;}
    aside{width:100%;text-align: center;display: block;}
    aside h3{margin-left: 10%;}
    aside p{width:100%;display: block;flex-direction: column;margin-left:2%;}
    img{width:100%;
    margin-left:2px;}
}