/* CSS Document */

body {
	background-color: #fdfaf5;
	color: #025059;
	font-family: 'Raleway', sans-serif;
}
/*Header*/
header {
	max-width: 600px;
	height: auto;
	margin: 2em auto 0 auto;
	text-align: center;
	font-size: 23px;
	font-style: italic;
	line-height: 29px;
}
.profile {
	width: 218px;
	height: 218px;
	display: block;
	margin: 0 auto 0 auto;
	border-radius: 50%;
	border: 2px solid #025059;
	padding: 3px;
}
header a {
	text-decoration: underline;
}
.icons a {
	color: #025059;
	font-size: 27px;
	text-decoration: none;
	line-height: 45px;
}
.icons a:hover {
	color: #DA4436;
}
/*Projects*/
#introduction h1 {
	font-family: 'Raleway', sans-serif;
	font-size: 45px;
	font-weight: normal;
}
#introduction {
	max-width: 600px;
	height: auto;
	margin: 0 auto 0 auto;
	text-align: center;
	font-size: 15px;
}
.projects {
	max-width: 960px;
	margin: 0 auto 0 auto;
	padding: 0;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-flow: row wrap;
	flex-flow: row wrap;
	-webkit-justify-content: space-around;
	-moz-justify-content: space-around;
	-ms-justify-content: space-around;
	justify-content: space-around;
	font-family: 'Lato', sans-serif;
}

@media (max-width: 767px) {
.projects {
	width: 100%;
}
}
.project {
	overflow: hidden;
	height: 310px;
	width: 280px;
	margin: 25px 5px 25px 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	border-bottom: 3px solid #DA4436;
	background-color: #ECE0BF;
	text-align: center;
	box-shadow: 0px 4px 15px 1px #CCCCCC;
	-webkit-box-shadow: 0px 4px 15px 1px #CCCCCC;
}
.image {
	height: 178px;
	width: 280px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}
.image img {
	height: 178px;
	width: 280px;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.image:hover img {
	-webkit-transform: scale(1.02);
	-moz-transform: scale(1.02);
	-ms-transform: scale(1.02);
	-o-transform: scale(1.02);
	transform: scale(1.02);
}
.title {
	font-family: 'Raleway', sans-serif;
	font-size: 19px;
	font-weight: normal;
	line-height: 17px;
}
.date {
	font-size: 12px;
	font-style: italic;
	line-height: 12px;
	margin-top: -8px;
}
.description {
	font-size: 15px;
	font-style: italic;
	line-height: 20px;
}
/*Footer*/
footer {
	max-width: 700px;
	height: auto;
	margin: 0 auto 70px auto;
	font-size: 18px;
	text-align: center;
}
/*Links*/
a {
	color: #DA4436;
	text-decoration: none;
}
a:hover {
	color: #F34637;
}
/*Sonstiges*/
#trenner {
	margin: 70px auto 70px auto;
	overflow: hidden;
	border-bottom: #8e8e8e dotted 1px;
}
