@charset "UTF-8";
/* CSS Document */

body {
  margin: 0;
  height: 100%;
  overflow: hidden
}

			@font-face {
   font-family: signatureFont;
   src: url("../fonts/MrDaHaviland.ttf");
}
			
			@font-face {
   font-family: taglineFont;
   src: url("../fonts/Infynyte.otf");
}
			
			

.signature {
   font-family: signatureFont;
	font-weight:bolder;
	color: #121212;
  text-shadow: 2px 2px 4px #BCBCBC;
  font-size: 110px;
	white-space: nowrap;
}

.tagline {
   font-family: taglineFont;
	font-weight:bolder;
	color: #121212;
  text-shadow: 1px 1px 3px #BCBCBC;
  font-size: 25px;
	font-stretch: extra-expanded;
	white-space: nowrap;
}
			
			.bgImage{
	background-image: url("../web_images/Remy@IntroPage.jpg");
	background-repeat: no-repeat;
			}
				
.copyright {
	color: #000000;
  text-shadow: 1px 1px 2px #BCBCBC;
  font-size: 15px;
  cursor: default;
}
			
			
			a:link {
  color: #000000; 
  background-color: transparent; 
  text-decoration: none;
  cursor: default;
  text-shadow: 1px 1px 2px #BCBCBC;
}

a:visited {
  color: #000000;
  background-color: transparent;
  text-decoration: none;
  cursor: default;
  text-shadow: 1px 1px 2px #BCBCBC;
}

a:hover {
  color: #000000;
  background-color: transparent;
  text-decoration: none;
  cursor: default;
  text-shadow: 1px 1px 2px #BCBCBC;
}

a:active {
  color: #000000;
  background-color: transparent;
  text-decoration: none;
  cursor: default;
  text-shadow: 1px 1px 2px #BCBCBC;
}
			
			
			
	.fade-in-text
{
  color: #000000;
  font-family: taglineFont;
  text-shadow: 1px 1px 4px #BCBCBC;
	font-size: 100px; 
	font-stretch: ultra-expanded;
	white-space: nowrap;
  animation: fadeIn 5s;
  -webkit-animation: fadeIn 5s;
  -moz-animation: fadeIn 5s;
  -o-animation: fadeIn 5s;
  -ms-animation: fadeIn 5s;
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@-moz-keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@-webkit-keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@-o-keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@-ms-keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}