/* The style file for the home page contents */

/* project link container */
.project_container {
  padding: 0px;
  width: 240px;
  height: 290px;
  float: left;
}

/* project links in general */
.project_link {
	padding: 55px;			/* some padding between the links */
  padding-top: 80px;
	width: 130px;			/* width to fill the body's width */
	height: 180px;			/* height */
	float: left;			/* let the links float to the left after each other */
	text-align: center;		/* all labels go to the center */
}
/* labels of the projects */
/* normal and visited */
.project_link a:link,
.project_link a:visited {
	font-family: "Arial", serif;	/* Arial font */
	font-size: 14px;		/* medium size */
	text-decoration: none;		/* no standard link decoration on labels */
	color: black;			/* black text */
	display: block;			/* put labels in a block to avoid shaking behavior
					   when the mouse is between two rows */
}
/* hovered and focused labels */
.project_link a:hover,
.project_link a:focus {
	color: #39f;			/* just change text color */
}
/* normal and visited images */
.project_link a:link img,
.project_link a:visited img {
	border: none;
	width: 100px;			/* image width */
	/* animation for the image links (browser-dependent) */
	-moz-transition-property: width, margin-top, margin-left;
	-moz-transition-duration: 0.5s;
	-moz-transition-timing-function: ease-out;
	-webkit-transition-property: width, margin-top, margin-left;
	-webkit-transition-duration: 0.5s;
	-webkit-transition-timing-function: ease-out;
	-o-transition-property: width, margin-top, margin-left;
	-o-transition-duration: 0.5s;
	-o-transition-timing-function: ease-out;
	transition-property: width, margin-top, margin-left;
	transition-duration: 0.5s;
	transition-timing-function: ease-out;
}
/* hovered and linked images */
.project_link a:hover img,
.project_link a:focus img {
	width: 120px;			/* change width */
	margin-top: -5px;
	margin-left: -5px;		/* change margin on top and left
					   so that the image's center stays fixed */
	/* browser-dependent animation */
	-moz-transition-property: width, margin-top, margin-left;
	-moz-transition-duration: 0.5s;
	-moz-transition-timing-function: ease-out;
	-webkit-transition-property: width, margin-top, margin-left;
	-webkit-transition-duration: 0.5s;
	-webkit-transition-timing-function: ease-out;
	-o-transition-property: width, margin-top, margin-left;
	-o-transition-duration: 0.5s;
	-o-transition-timing-function: ease-out;
	transition-property: width, margin-top, margin-left;
	transition-duration: 0.5s;
	transition-timing-function: ease-out;
}

/* photos */
#photos {
	position: static;		/* static position (normal flow) */
	width: 100%;			/* total width of the body */
}

/* team photo */
#team_photo {
	width: 55%;			/* 60% of the containing object (photos) */
	margin-left: 6%;		/* some margin on the left */
	margin-right: 5%;		/* the same margin on the right */
	float: left;			/* let the image float to the left (next to each other) */
	font-family: "Arial";		/* text font */
	font-size: 20px;		/* text size */
	text-align: center;		/* centered caption */
}
/* image */
#team_photo img {
	width: 100%;			/* image width is the total of team_photo" */
	margin-bottom: 20px;		/* margin to the bottom */
	box-shadow: 5px 5px 10px black;	/* some nice box shadow */
	border-radius: 10px;		/* curved edges */
}

/* profile photo */
#profile_photo {
	width: 12%;			/* width */
	float: left;			/* let the image float to the left */
	margin-top: 10px;
	margin-left: 8%;		/* some margins to position the object */
	margin-right: 8%;		/* some margins to position the object */
	font-family: "Arial";		/* text font */
	font-size: 18px;		/* text size */
	font-weight: bold;		/* bold caption */
	text-align: center;		/* centered caption */
}
/* image */
#profile_photo img {
	width: 75%;			/* image width is the whole "profile_photo" */
	clear: both;
}
/* stamps container */
.stamp_container {
	margin-bottom: 10px;
}
/* stamp icons */
.stamp_icon {
  width: 8%;
  float: left;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: 1%;
  margin-right: 1%;
}
.stamp_icon a:link img,
.stamp_icon a:visited img {
  width: 90%;
  margin-top: 5%;
  margin-left: 5%;
  margin-bottom: 5%;
  border-radius: 10px;
	-moz-transition-property: width, margin-top, margin-left, margin-bottom;
	-moz-transition-duration: 0.5s;
	-moz-transition-timing-function: ease-out;
	-webkit-transition-property: width, margin-top, margin-left, margin-bottom;
	-webkit-transition-duration: 0.5s;
	-webkit-transition-timing-function: ease-out;
	-o-transition-property: width, margin-top, margin-left, margin-bottom;
	-o-transition-duration: 0.5s;
	-o-transition-timing-function: ease-out;
	transition-property: width, margin-top, margin-left, margin-bottom;
	transition-duration: 0.5s;
	transition-timing-function: ease-out;
}
.stamp_icon a:hover img,
.stamp_icon a:focus img {
	width: 100%;
	margin-top: 0;
  margin-left: 0;
  margin-bottom: 0%;
  box-shadow: 0px 0px 1px gray;
	-moz-transition-property: width, margin-top, margin-left, margin-bottom;
	-moz-transition-duration: 0.5s;
	-moz-transition-timing-function: ease-out;
	-webkit-transition-property: width, margin-top, margin-left, margin-bottom;
	-webkit-transition-duration: 0.5s;
	-webkit-transition-timing-function: ease-out;
	-o-transition-property: width, margin-top, margin-left, margin-bottom;
	-o-transition-duration: 0.5s;
	-o-transition-timing-function: ease-out;
	transition-property: width, margin-top, margin-left, margin-bottom;
	transition-duration: 0.5s;
	transition-timing-function: ease-out;
}
/* impact */
#impact_icon {
  width: 20%;
  height: 4%;
  float: right;
  margin-top: 10px;
  margin-right: 6%;
}
#impact_icon div.text {
  width: 30%;
  float: left;
  margin-top: 16px;
  font-family: "Arial";
	font-weight: bold;
	font-size: 18px;
}
#impact_icon img {
  width: 60%;
  float: right;
}

/* highlighted button */
.highlight_container {
  padding: 10px;
  width: 174px;
  margin-top: 20px;
  margin-bottom: -57px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  background: yellow;
  border: solid 1px red;
  border-radius: 5px;
  font: bold 10pt 'Arial';
  text-align: center;
  color: red !important;
}
.highlight_container:hover {
  border: solid 1px blue;
  background: #FFA;
  color: blue !important;
}

