html {
    /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    width: 100%;
    height: 100%;
    
}

/* .loader {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: rgb(7,35,72);
	background: linear-gradient(90deg, rgba(7,35,72,1) 0%, rgba(6,26,53,1) 100%);
	background: -moz-linear-gradient(80deg, rgba(7,35,72,1) 0%, rgba(6,26,53,1) 100%);
	background: -webkit-linear-gradient(90deg, rgba(7,35,72,1) 0%, rgba(6,26,53,1) 100%);
} */
body{
    width: 100%;
    height: 100%;
	background: linear-gradient(to bottom,#3199ac 40%, #91ffff);
    background: -moz-linear-gradient((to bottom,#3199ac 40%, #91ffff));
	background: -webkit-linear-gradient((to bottom,#3199ac 40%, #91ffff));    
    display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.logoanimado{
	/* width: 300px;
	height: 150px; */
	max-width: 300%;
	/* overflow: hidden; */
	width: 850px;
	display: flex;
	justify-content: center;
	transform: translatey(0px);
    background-color: transparent;
	/* animation: float 3s ease-in-out infinite; */
	/* img { width: 100%; height: auto; } */
    background-blend-mode: multiply;
}

img{
    width: 300%;
    padding: 10%;
}
@keyframes float {
	0% {
		transform: translatey(0px);
	}
	50% {
		transform: translatey(-20px);
	}
	100% {
		transform: translatey(0px);
	}
}

h1{
    color: white;
    font-size:20px;
}
p{
    color: white;
    font-size: 12px;
}