
body{
	background-image: url("/images/Background.jpg");
	background-color:white;
	font-family:Verdana, sans-serif;
	color:#ff8c00;
}

header {
	padding: 5px;
	background-color:#fff;
	color: #ff00ff;
	margin:20px 5px;
	width:100%;
}

nav {
	display: inline-flex;
	width: 100%;
}

.nav-menu {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	list-style: none;
	margin: 0;
	width: 100%;
}

li {
	box-shadow: 50px;
}

.nav-links {
	background-color: aqua;
	margin: 10px;
	padding: 10px;
	border-radius: 5px;
}

a {
	color: black;
	text-decoration: none;
}

.flex-container {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center; /* center horizontally */
	width: 100%;
	flex-direction: row;
	flex-wrap: nowrap;
}

.flexed-item {
	color: #333;
	margin:20px;
}

.flexed-item:hover{
 /*background: #ff0000;*/
}

.search-box-container {
	text-align: right;
}

.search-box {
	height: 30px;
}

.search-box::-webkit-input-placeholder {
	text-align: right;
	font-size: 16px;
}

figure {
	margin: 0;
	font-size: 20px;
}

figure > img {
	border: 10px solid #eb32eb;
	border-radius: 5px;
}

figcaption {
	text-align: center;

}

.flex-container-projects {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center; /* center horizontally */
	width: 100%;
	flex-direction: row;
	flex-wrap: nowrap;
}

.flexed-item-ad {
	margin-left: 50px;
}

.projects-container {
	display: -webkit-flex;
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
}

.page-title {
	text-align: center;
}

.flex-container-projects-page {
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
}

.flex-container-projects-page > img {
	height: 232px;
	width: 232px;
}

.project-section-title {
	text-align: center;
	color: #eb32eb;
}

.project-item-container {
	margin-bottom: 20px;
}

.project-item-container > figcaption {
	color: #eb32eb;
}

.page-numbers {
	text-align: center;
}

.brand-design-text {
	color: #eb32eb;
	font-weight: bold;
	font-style: italic;
}

.flex-container-about {
	display: -webkit-flex;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

.about-text {
	color: black;
	margin-left: 200px;
	margin-right: 200px;
	width: 250px;
	line-height: 25px;
}