﻿@charset "utf-8";
/* CSS Document */

@import url(http://fonts.googleapis.com/css?family=Ubuntu+Condensed);


html, body {
	margin:0px;
  	font-family: 'Ubuntu Condensed', sans-serif;
	background-color:#fff;
	background-image:url(../imagens/background.jpg);
	background-repeat:no-repeat;
	background-position:center center;
	background-attachment: fixed;
	background-size:100% 200%;
}

#conteudo{
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	width:100%;
	height:100%;
	position:absolute;
	background-image:linear-gradient(to bottom, rgba(0,200,100,0.6) 25%, rgba(255,255,255,1) 50%, rgba(0,100,200,0.7) 75%);
}

.imagem_logo{
	width:400px;
	animation: aumentar 3s ease-in-out infinite;
}

@keyframes aumentar {
	0% {
				
	}

	50% {
		width: 35%;
	}

	100% {

	}
}
		

@media screen and (max-width: 1000px) {
			html, body {
				background-size:200% 100%;	
			}
			
			.imagem_logo{
				width:50%;
			}
			
					@keyframes aumentar {
						0% {
							
						}
			
						50% {
							width: 70%;
						}
			
						100% {
			
						}
					}
}