html {
	/*background-color: rgba(82, 73, 92, 1);*/
}

body {
	font: 1em/1.67 'Open Sans', Arial, Sans-serif;
	margin: 0;
	background-color: rgba(82, 73, 92, 1);
	background-image: url("../img/tiledCobble.png");
	background-repeat: repeat;
	background-size: 30% 30%;
}

.portfolio-image {
	width: 100%;
	/*height: 100%;*/

	/*-webkit-transform: translateX(-10%);
	-moz-transform: translateX(-10%);
	transform: translate(-10%,-10%);*/
	vertical-align: middle;
}

.portfolio-title {

}

.portfolio-title h1 {
	display: block;
	text-align: center;
	color: white;
	font-size: 10vmin;
	margin: 0;
	text-shadow: -3px 0px black;
}

ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
	background-color: rgba(52, 46, 59, 1);
	height: 5vmin;
	display: block;
}

li {
	padding: 1vmin;
	/*min-width: 10vmin;*/
	float: left;
	background-color: rgba(52, 46, 59, 1);
	height: 100%;
}

li:hover {
	background-color: rgba(82, 73, 92, 1);
}

li a {
	display: block;
	height: 100%;
	/*padding: 8px;*/
}

/*
 * Link Stuff
 */

a:link {
	color: rgba(51, 227, 255, 0.7);
	color: white;
	text-decoration: none;
}

a:visited {
	color: rgba(51, 227, 255, 0.7);
	color: white;
	text-decoration: none;
}

/*Only this one is different...*/
a:hover {
	color: rgba(51, 227, 255, 0.9);
	/*color: rgba(53, 130, 123, 0.9);*/
	text-decoration: none;
}

a:active {
	color: rgba(51, 227, 255, 0.7);
	/*color: rgba(53, 130, 123, 0.7);*/
	text-decoration: none;
}


/*53, 130, 123*/
/*34, 91, 86 darker */

/*
 * Link Stuff in image-container
 */

.image-container a:link {
	color: rgba(51, 227, 255, 0.7);
	color: rgba(53, 130, 123, 0.7);
}

.image-container a:visited {
	color: rgba(51, 227, 255, 0.7);
	color: rgba(53, 130, 123, 0.7);
}

.image-container a:hover {
	color: rgba(53, 130, 123, 0.9);
}

.image-container a:active {
	color: rgba(53, 130, 123, 0.7);
}

iframe {
	/*max-width: none;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	transform: translate(-50%,-50%);*/

	display: block;
	margin: 0 auto;
	width: 100%;
	height: 100%;
}





.portfolio-wrapper {
	width: 95%;
	margin: 3em auto;
}

.images-container {
	margin: 1.5em 0;
	padding: 0;
	-moz-column-gap: 1.5em;
	-webkit-column-gap: 1.5em;
	column-gap: 1.5em;
	font-size: .85em;
	/*background-image: url("img/tiledCobble.png");
	background-repeat: repeat;*/

}

.section-title {
	text-align: center;
	font-size: 5vmin;
	text-shadow: -2px 0px white;
	color: rgba(52, 46,59, 1)
}

.section-break {
	height: 1vmin;
	width: 100%;
	background-color: rgba(52, 46,59, 1);
	border-radius: 3px;
}

.image-container {
	display: inline-block;
	background: #fff;
	padding: 0em;
	margin: 0 0 1.5em;
	width: 100%;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	/*box-shadow: 2px 2px 4px 0 #ccc;*/
	box-shadow: 2px 2px 4px 0 rgba(52, 46,59, 1);
}

.underline {
	text-decoration: underline;
}

@media only screen and (min-width: 400px) {
	.images-container {
		-moz-column-count: 2;
		-webkit-column-count: 2;
		column-count: 2;
	}
}

@media only screen and (min-width: 700px) {
	.images-container {
		-moz-column-count: 3;
		-webkit-column-count: 3;
		column-count: 3;
	}
}

/*@media only screen and (min-width: 900px) {
	.images-container {
		-moz-column-count: 4;
		-webkit-column-count: 4;
		column-count: 4;
	}
}*/

/*@media only screen and (min-width: 1100px) {
	.images-container {
		-moz-column-count: 5;
		-webkit-column-count: 5;
		column-count: 5;
	}
}*/

@media only screen and (min-width: 1280px) {
	.portfolio-wrapper {
		width: 1260px;
	}
}