body {
	margin: 0px;
	padding: 0px;
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	font-weight:100;
}

img {

}

a {
	color: #FFF;
	text-decoration: none;
}

#flags {
	margin-top: 20px;
}

hr {
	border: solid 1px #eee;
}

.flag {
	height: 20px;
	margin: 0px 4px;
}

#header {
	border-bottom: 1px solid #AAA;
	height: 320px;
	background-image: url('img/header.jpg');
	background-size: cover;
	background-position: center, center;
}

#nav {
	font-family: 'Montserrat', sans-serif;
	height: 50px; 
	width: 100%; 
	background-color: rgba(255,255,255,0.3);
	text-align: center;
	font-size: 20px;
}

.nav {
	padding: 10px 20px;
	color: #000;
	text-decoration: none;
	height: 30px;
	
	display: inline-block;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
	overflow: hidden;
	-webkit-transition-duration: 0.5s;
	transition-duration: 0.5s;
	-webkit-transition-property: color, background-color;
	transition-property: color, background-color;
}

.nav:hover {
	-webkit-animation-name: hvr-back-pulse;
	animation-name: hvr-back-pulse;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-delay: 0.5s;
	animation-delay: 0.5s;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	background-color: #444;
	background-color: #444;
	color: white;
}

#logo {	
	height: 270px;
	display: block;
    margin: 0 auto;
	margin-top: -10px;
	background: linear-gradient(to right,  rgba(255,255,255,0.0), rgba(255,255,255,0.3) 50%, rgba(255,255,255,0.0));
}

#content {
	max-width: 800px;
	margin: 0 auto;
	padding: 0px 50px 30px 50px;
	line-height: 1.7;
	min-height: 150px;
}

#footer {
	height: 120px;
	padding-top: 25px;
	border-top: 1px solid #AAA;
	text-align: center;
	color: #FFF;
	background-color: #333333;
}

.icon {
	width: 25px;
	margin: 10px 20px 10px 20px;
}

#me {
	width: 13%;
	float: left;
	margin: 0px 15px 0px 15px;
	border: 1px solid #000000;
}

#blacklink {
	color: #000000;
}

/* Back Pulse */
@-webkit-keyframes hvr-back-pulse {
  50% {
    background-color: rgba(68, 68, 68, 0.75);
  }
}

@keyframes hvr-back-pulse {
  50% {
    background-color: rgba(68, 68, 68, 0.75);
  }
}