body {
	background-color: #000000;
	color: white;
}

header {
	color: white;
}

.cloud {
	position: fixed;
	width: 100%;
	height: 100%;
	background: url("/static/img/cloud.png") center;
	background-size: cover;
	background-attachment: fixed;
	opacity: 0.1;
	animation: animatecloud 480s linear infinite;
	z-index: -1;
}
@keyframes animatecloud
{
	0%
	{
		background-position: 0px;
	}
	100%
	{
		background-position: 5440px;
	}
}


.dl-brand {
	font-family: 'Kaushan Script', cursive;
}


.pull-front {
	z-index: 2;
}

.nav-icon {
	color: white;
	font-size: 3rem;
}

ul.nav-landing li:hover {
	transform: scale(1.2);
	transition-duration: 0.2s;
}

.project-spacer {
	height: 120px;
	position: relative;
}

.project-section h2 {
	border-bottom: 1px solid #FFFFFF;
}

.project-section img {
	height: 150px;
}

.project-section {
	position: relative;
}

.project-section-bg {
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: -2;
}
