body, html{
	font-size: 100%;
	font-family: "Work Sans", sans-serif;
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-size: 1rem;
}

body,html{
	margin:0;
	padding:0;
}

h1
{
	color: #4bc0c8;
	font-size: 30px;
}

nav ul{
	list-style: none;
	padding:0;
	background: white;	
}

nav ul li a{
	color: black;
	text-decoration: none;
	padding: .8rem 1rem;
	display: block;
	line-height: 1;
}

nav ul li{
	border-bottom: 1px dotted white;
}

/*styling logo*/

nav div first-child{
	background:white;
}

nav div:first-child h1{
	line-height:0;
	padding: 0rem 0rem;
	text-align: left;
}

nav div:first-child img{
	padding-left: 1.5rem;
	background-color: white;
}

nav div:first-child h1, nav ul{
	margin:0;
}

/* Body Content */


.body-container{
	background-color:#ffed94;
	display: flex;
	align-items: Center;
	flex:1;
	flex-direction: column;
}

.body
{
	color: midnightblue;
	flex:1;
	
}

.name
{
	font-size: 100px;
}

.outer {
    display: flex;
    margin-right: auto;
    margin-left: auto;
}

.left-container {
    background: white;
    border-radius: 25px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    overflow: hidden;
    margin-bottom: 1.05rem;
    margin-top: 1.1rem;
    margin-left: auto;
    margin-right: .5rem;
    width: 35rem;
}

.myImage {
    max-width: 600px;
}

.right-container {
    border-radius: 25px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    overflow: hidden;
    margin-bottom: 1.05rem;
    margin-top: 1.1rem;
    margin-right: auto;
}

p {
    padding-left: 3rem;
    padding-right: 3rem;
    padding-bottom: 1rem;
    font-size: 17px;
}

.firstp {
    padding-top: 3rem;
}

.lastp {
    padding-bottom: 3rem;
}


.footer
{
	display:flex;
	flex-direction: column;
	justify-content: space-between;
	background: dimgrey;
	align-items: center;
}

.footer ul{
	display: flex;
	align-items: center;
	list-style: none;
	background:dimgrey;	
}

.footer ul li {
	display: flex;
	color: white;
	text-decoration: none;
	padding: .8rem 1rem;
	line-height: 1;
}




/*Styling for larger devices*/

@media only screen and (min-width: 20em){
	nav{
		display: flex;
		justify-content: space-between;
		background: white;
		align-items: center;
	}

	nav ul{
		display: flex;
		align-items: center;
		background:none;
	}
	nav div:first-child h1{
		padding: 0;
		margin-left:0 1rem;
	}

	nav div:first-child img{
		height: 40px;
	}
	nav ul li{
		border-bottom: none;
	}

	nav ul li a{
		padding:1.2rem 1rem;
	}

	nav ul li a:hover{
		color: aliceblue;
		transition: color .1s;
	}
}
