/*
		açık gri = #a4aeb9;
		koyu gri = #72808f;
		*/
* {
	font-family: "Open Sans", Arial, Helvetica, sans-serif;
}

body {
	height:100%;
	background-image: url(../images/background_1.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	background-attachment: fixed;
}

.baslik {
	color:#FFFFFF;
	font-weight: 600;
	text-align: center
}

.mainhold {
	max-width:600px;
}
.planes {
	height: 100%;
	width: 100%;
	position: absolute;
	top:0;
	left:0;
	overflow: hidden;
}

.planeHolder {
	background:transparent url(../images/planes.png) no-repeat;
	background-position: center center;
	background-attachment:local;
	width: 100%;
	height:800px;
	-webkit-animation-name: rotate;
	-webkit-animation-duration:60s;
	-webkit-animation-iteration-count:infinite;
	-webkit-animation-timing-function:linear;
	-moz-animation-name: rotate;
	-moz-animation-duration:60s;
	-moz-animation-iteration-count:infinite;
	-moz-animation-timing-function:linear;
	}

@-webkit-keyframes rotate {
  from {-webkit-transform:rotate(0deg);}
  to {  -webkit-transform:rotate(360deg);}
}

@-moz-keyframes rotate {
  from {-moz-transform:rotate(0deg);}
  to {  -moz-transform:rotate(360deg);}
}



a.button {
	background-color:rgba(0,0,150,0.2);
	border:4px solid #FFFFFF;
	color:#FFFFFF;
	font-weight: 600;
	padding:25px 20px;
	width:100%;
	border-radius: 15px;
	margin-bottom:15px;
	cursor: pointer;
}

a.button:hover {
	background-color:#ff3a20;
}














