/*
	CSS file for fishworks.hu
*/

	* {
		padding: 0;
		margin: 0;
		outline: none;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
	}
	
	.clearfix:after {
		visibility: hidden;
		display: block;
		font-size: 0;
		content: " ";
		clear: both;
		height: 0;
	}
	
	* html .clearfix,
	*:first-child+html .clearfix { 
		zoom: 1;
	}
	
	html,
	body {
		height: 100%;
		color: #ffffff;
		font-size: 24px;
		font-family: 'Myriad Pro', Arial, sans-serif;
	}
	
	.wrapper {
		width: 100%;
		height: 100%;
		position: fixed;
		background: url('../img/bg-2.jpg') repeat-y center top;
		-webkit-animation: bgMove 90s linear;
	    -moz-animation: bgMove 90s linear;
	    -ms-animation: bgMove 90s linear;
	    -o-animation: bgMove 90s linear;
	    animation: bgMove 90s linear;
	}	
	
	.logo {
		left: 50%;
		top: 50%;
		margin: -150px 0 0 -150px;		
		position: absolute;
		-webkit-transform: scale(0.8);
		   -moz-transform: scale(0.8);
			    transform: scale(0.8);
		/*-webkit-border-radius: 50%;
		   -moz-border-radius: 50%;
		   		border-radius: 50%;
		-webkit-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.5);
		   -moz-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.5);
		   		box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.5);*/
		-webkit-transition: all 0.4s cubic-bezier(.31,.89,.78,1.1);
		   -moz-transition: all 0.4s cubic-bezier(.31,.89,.78,1.1);
		   		transition: all 0.4s cubic-bezier(.31,.89,.78,1.1);
	}
	
	.logo:hover {
		-webkit-transform: scale(1);
		   -moz-transform: scale(1);
			    transform: scale(1);
	}
	
	h2 {
		font-weight: 400;
		text-align: center;
		padding-top: 30px;
		text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.4);
	}
	
	@-webkit-keyframes bgMove {
		from { background-position: center 0px; }
		to { background-position: center -1600px; }
	}
	
	@-moz-keyframes bgMove {
		from { background-position: center 0px; }
		to { background-position: center -1600px; }
	}
	
	@-ms-keyframes bgMove {
		from { background-position: center 0px; }
		to { background-position: center -1600px; }
	}
	
	@-o-keyframes bgMove {
		from { background-position: center 0px; }
		to { background-position: center -1600px; }
	}
	
	@keyframes bgMove {
		from { background-position: center 0px; }
		to { background-position: center -1600px; }
	}