body {
	background-color: #5C1A40;
	color: #fff;
	padding: 0;
	margin: 0;
	/* overflow-x: hidden; */
	font-family: 'Courgette', cursive, Verdana, arial, sans-serif;
	text-rendering: optimizeLegibility;
	
	min-height: 420px;
}
a {
	color: #e0e0e0;
	text-decoration: none;
}
a:hover {
	color: #fff;
}

.web-bg {
	background: #330f1e url(../images/inio-bg2.jpg) no-repeat center top fixed; 
	  -webkit-background-size: cover;
	  -moz-background-size: cover;
	  -o-background-size: cover;
	  background-size: cover;
	  
	position: fixed;
	top: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	
}

.main-text {
	font-size: 1em;
	text-align: left;
	position: fixed;
	display: inline-block;
   bottom: 2rem;
	left: 1rem;
	color: #fff;
	background-color: rgba(0,0,0,0.5);
	box-shadow: 0 0 12px #330f1e;
	border-radius: 8px;
	padding: 1.4em 1.8em;
	margin: 0.6em;
	
}

.branding {
	font-size: 5em;
	margin-bottom: 1.6rem;
}


.branding .title {
	font-family: 'Kaushan Script', cursive, serif;
	font-weight: normal;
	display: block;
	color: #fff;
	font-size: 2em;
	line-height: 0.8em;
	text-shadow: 0 1px 5px #111, 0 0 8px #fff, 4px 6px 12px #000;	
	padding-bottom: 0.1em;
}
.branding .subtitle {
	font-weight: normal;
	display: block;
	color: #fcf6e0;
	font-size: 0.3em;
	line-height: 1em;
	text-shadow: 1px 2px 3px #000, 4px 4px 10px #333;
	letter-spacing: 0.04em;
}

.description {
	font-size: 1.1em;
	letter-spacing: 0.04em;
	margin-bottom: 0.4em;
}
.contact-info {
		font-size: 1.2em;
		line-height: 1.8rem;
		letter-spacing: 0.08em;
		
}
.description, 
.contact-info {
	text-shadow: 1px 2px 1px #111;
	color: #fff;
}

.social-links {
	/*
	position: fixed;
	right: 0.4em;
	top: 0;
	*/
	font-size: 1.7em;
	margin-top: 0.3em;
}
.social-links a {
	display: inline-block;
	font-size: 1em;
	margin: 0.1em;
	color: #f0f0f0;
	text-shadow: none;
	opacity: 0.6;
}
.social-links a:hover {
	color: #fff;
	text-shadow: 0 0 10px #e0e0e0;
	opacity: 1;
}

.inio-logo {
	width: 3em;
    display: block;
    right: 0.8em;
    bottom: 2.8em;
    position: fixed;
	 
	 animation-name: logo-anim;
    animation-duration: 4s;
    animation-iteration-count: infinite;
}
.copyright {
	 font-family: verdana, arial, sans-serif;
    position: fixed;
    right: 0.4em;
    bottom: 0.1em;
    font-size: 0.8em;
    color: #fff;	
    /* text-shadow: 0px 1px 0 #777; */
	 opacity: 0.7;
}


@media screen and (max-width: 420px) {
	.branding {
		font-size: 6em;
		margin-bottom: 1.6rem;
	}
	.main-text {
		font-size: 1em;
		text-align: center;
		left: auto;
		right: auto;
	}
	.inio-logo {
		
	}
	.copyright {
	 width: 100%;
    text-align: center;
    padding: 0;
    margin: 0;
	}
	.social-links a {
		font-size: 1em;
	}
}
@media screen and (max-height: 480px) {
	.main-text { 
		position: relative;
	}
}



@keyframes logo-anim {
    0%   {
		 
		 opacity: 1;
		 
        filter: brightness(1);
        filter: contrast(1);
        -webkit-filter: brightness(1);
        -webkit-filter: contrast(1);
		  
		   -ms-transform: scale(1); /* IE 9 */
			-webkit-transform: scale(1); /* Safari */
			transform: scale(1);
    }
    60%  {
		 
		 opacity: 0.3;
		 
        filter: brightness(0.4);
        filter: contrast(0.4);
        -webkit-filter: brightness(0.4);
        -webkit-filter: contrast(0.4);
		  
		  
		  -ms-transform: scale(0.9); /* IE 9 */
			-webkit-transform: scale(0.9); /* Safari */
			transform: scale(0.9);
    }
    100% {
		 
		 opacity: 1;
		 
        filter: brightness(1);
        filter: contrast(1);
        -webkit-filter: brightness(1);
        -webkit-filter: contrast(1);
		  
		   -ms-transform: scale(1); /* IE 9 */
			-webkit-transform: scale(1); /* Safari */
			transform: scale(1);
    }
}