body, html {
  height: 100%;
  margin: 0;
  background-color: #f8f7f0;
}
  
#landing-banner {
	background-color: #f8f7f0;
	height: 100%;
	width: 250px;
	float: right;
	margin-right: 15%;
}

#landing-banner > img {
	display: block;
	width: 220px;
	height: auto;
	position: absolute;
	bottom: 10%;
	margin-left: 15px;
}

@media (max-width:600px) {
	#landing-banner {
		height: 150px;
		width: 100%;
		position: absolute;
		bottom: 12%;
		text-align: center;
	}
	
	#landing-banner > img {
		width: auto;
		height: 150px;
		margin: auto;
		position: relative;
		bottom: 0%;
	}
}

/* PORTFOLIO */
.portfolio-card {
	width: 330px;
}

#logo > img {
	width: 250px;
	height: auto;
	margin-top: -60px;
	margin-bottom: -20px;
}

#portrait > img {
	border-radius: 8px;
	width: 300px;
	height: auto;
}

@media (min-width:600px) {
	#logo > img {
		width: 300px;
		height: auto;
	}

	#portrait {
		margin-left: 2em;
	}

	#portrait > img {
		border-radius: 8px;
		width: 400px;
		height: auto;
	}
}

.bg {
  /* The image used */
  background-image: url("/img/bg2.png");

  /* Full height */
  height: 100vh; 

  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* PORTFOLIO DETAILS */
#portfolio-img > img {
	width: 500px;
	height: auto;
}
#portfolio-txt {
	/*width: 500px;*/
	width: auto;
}

.logo-portfolio {
	display: block;
	width: 180px;
	height: auto;
	position: absolute;
	bottom: 10%;
	right: 10%;
}

.image-thumb {
	height: auto;
	margin-right: 5px;
	margin-top: 5px;
}

@media (max-width:600px) {
	#portfolio-img > img {
		width: 100%;
		height: auto;
	}
	#portfolio-txt {
		width: 100%;
		height: auto;
	}
	.logo-portfolio {
		display: block;
		width: 50%;
		height: auto;
		position:relative;
		margin-left: 30%;
		padding-left: 0;
	}
	.image-thumb {
		height: auto;
		width: 100%;
		margin-right: 0px;
		margin-top: 5px;
	}
}

