/*
Version: 0.1
Author: NeViewa
*/

/* Begin Typography & Colors */
body {
	font-family: Arial, Sans-Serif;
	background-color: #BD7B57;
	background-image:url('background.png');
	background-repeat: no-repeat;
	background-position: top;
	text-align: center;
	line-height: 1.3;
	}
	
#head {
	width: 500px;
	margin: auto;
	h1 {
		border-style: inset;
		border-width: thick;
	}
}

#navbar {
	ul{
	list-style-type: none;
	margin: 5px;
	padding: 5px;
	overflow: hidden; 
	background-color: #333;
	border-radius: 25px;
	}
	li {
	float: left;
	}

	li a {
	display: block;
	color: white;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
}

li a:hover:not(.active) {
  background-color: #111;
  border-radius: 25px;
}

.active {
  background-color: #B55B12;
  border-radius: 25px;
}
}

#page {
	margin:auto;
	padding:0px;
	border: 0px;
	width: 1000px;
	text-align: center;
	}
	
#text {
	padding: 5px;
	background: rgba(255,255,255,0.85);
	border-radius: 100px;
}

#divider {
	height: 15px;
}
	
#team {
	height: 250px;
	padding: 5px;
	background: rgba(255,255,255,0.85);
	border-radius: 100px;
}

# images {
	margin: auto;
}

figure {
	display: inline-block;
	margin-right: 8px;
}

img {
  border-radius: 100px;
  width: 100px;
}

img:hover {
  box-shadow: 0 0 2px 1px rgba(0, 140, 186, 0.5);
}