/*========CSS RESET=========*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, input, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	border:none;
	font-size: 10.5pt;
	font-family: Arial, Helvetica, Verdana, Sans-Serif;
	vertical-align: baseline;
	outline:none;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* CSS Document */
* {
	box-sizing: border-box;
}
body {
	background-image: linear-gradient(to right, #231f20, #313131);
}

	
h1 {
	font-family: 'Myriad Pro', sans-serif;
	color: #ffffff;
	font-size: 13vw;
	margin-bottom: 20px;
	/* line-height: 15vh; */
	text-align: center;
	letter-spacing: .9vw;
}

h2 {
	font-family: 'Myriad Pro', sans-serif;
	color: #ffffff;
	font-size: 20.6vw;
	margin: 0 0;
	padding: 0 0;
	line-height: 60%;
	text-align: center;
}	

.container {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	/* flex-direction: column; */
	justify-content: 31;
}

.image {
	position: absolute;
	left: -20%;
	top: -500px;
}

.containerText {
	position: relative;
	/* text-align: center; */
	/* margin-top: 15%; */
	margin: 0 auto;
	display: flex;
	justify-content: center;
	flex-direction: column;
	/* width:100%; */
	height: 100%;
}

hr.border {
	border: 2px solid white;
	width: 100%;
	margin-top: 60px;

}

.footer {
	text-align: center;
	margin-top: 5%;
}

.footer .contact {
	font-family: 'Myriad Pro', sans-serif;
	color: #ffffff;
	font-size: 3vw;
	text-decoration: none;
}

body, html { height:100%;}



.rotate {
	width: 75%;
-webkit-animation: rotation 20s infinite linear;
-moz-animation: rotation 20s infinite linear;
	
}

@-webkit-keyframes rotation {
	from {
			-webkit-transform: rotate(0deg);
	}
	to {
			-webkit-transform: rotate(359deg);
	}
}

@-moz-keyframes rotation {
	from {
			-moz-transform: rotate(0deg);
	}
	to {
			-moz-transform: rotate(359deg);
	}
}


@media (max-width: 1000px){

	
	.image {
		top: -5vh;
	}
	
	.rotate {
		width: 80%;
	}

	.footer .contact {
		font-size: 5vw;
	}
}
