
body, html{
	background-color: #f9f4ec;
	font-family: 'Exo', sans-serif;
	height: 100%;
}

.container-fluid {
	width: 100%;
	height: 100%;
	overflow: hidden;
	display: block;
}

.imgbg {
	background-color: #019fa0;
	/*
    background: -moz-linear-gradient(45deg, #d6b793 1%, #2e224a 100%);
    background: -webkit-linear-gradient(45deg, #d6b793 1%,#2e224a 100%);
    background: linear-gradient(45deg, #d6b793 1%,#2e224a 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d6b793', endColorstr='#2e224a',GradientType=1 );
	*/
}


.logo {
    height: 257px;
    width: 450px;
    background-image: url(../img/logo.png);
    background-repeat: no-repeat;
    margin: 150px auto 0;
    animation-name: mymove;
    animation-duration: 2s;
    animation-timing-function: ease-in-out;
    animation-delay: 0s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    animation-fill-mode: none;
    animation-play-state: running;
}

/* Safari 4.0 - 8.0 */
@-webkit-keyframes mymove {
    from {margin-top: 30vh;}
    to {margin-top: 35vh;}
}

@keyframes mymove {
    from {margin-top: 30vh;}
    to {margin-top: 35vh;}
}

h1 {
	font-size: 48px;
	font-weight: bold;
	text-align: center;
	text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.4);
	margin: 0;
    margin-bottom: 3px;
	padding: 0;
}

h2 {
	font-family: 'Pacifico', cursive;
	font-size: 30px;
	text-align: center;
	text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.4);
	margin: 0;
	padding: 0;
}

h3 {
	font-size: 24px;
	font-weight: bold;
	color: #606060;
	margin: 0;
	padding: 0;
	text-align: center;
	margin-top: 50px;
}

h4 {
	font-size: 14px;
	color: #fff;
	margin: -38px -15px 0;
	padding: 0;
	width: 100%;
	text-align: center;
	position: absolute;
	top: 100%;
}

@media (max-width: 991px) {

	.logo {
		height: 114px;
		width: 200px;
		background-size: cover;
		margin: 100px auto 0;
		background-image: url(../img/logos.png);
	}

	h4 {
		font-size: 10px;
		margin: -30px -15px 0;
	}

}

