

/* Padroniza estilos entre os navegadores mais populares */
@import url('css/reboot.min.css');

/* Google Fonts 
@import url('https://fonts.googleapis.com/css?family=Anton|Quicksand');
*/
/* Estilos globais */
body {
	background: url("/img/bg03.jpg") fixed;
	font-family: 'Quicksand', sans-serif;
	background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), orange);
}
img {max-width: 100%;} /* funciona */
/* 
Converte as tags de "inline" para "block".
Essas tags passam a funcionar como a tag DIV. 
*/
main, header, nav, content, footer {
	display: block;
}

/* Estilos do bloco principal */
main {

}

/* Estilos do cabeçalho */
header {
	background-color: green;
	background-color: rgba(0,0,0,0.8);
	color: rgb(255, 238, 0);
	overflow: auto;
	display: flex;
	align-items: center;
	background-image: linear-gradient(to right, rgba(150, 0, 0, 0.5), silver); 


}	
header h1 {
	display: inline;
	margin: 0;
	font-family: 'Anton', sans-serif;
}
header h1 small {
	display: block;
}
header img {
	margin: 10px 16px 10px 16px;
}

/* Estilos do menu principal */
nav {
	text-align: right;
	padding: -10px;
	padding-right: 16px;
	overflow: hidden;
	display: flex;
	justify-content: flex-end;
}
nav a {
	background-color: rgb(255,0,0);
	padding: 4px 12px 4px 12px;
	text-decoration: none;
	border-radius: 5px;
	margin: 10px;
	color: rgb(255,255,255);
	font-weight: bold;
	font-size: 1.3rem;

}

/* Usando a pseudo-classe "hover" */
nav a:hover {
	background-color: rgb(255,255,0);
	color: rgb(255,0,0);
}

/* Estilos do conteúdo da página */
content {
	background: rgba(255,255,255,0.95);
	/*overflow: hidden;*/
	min-height: 100vh;
	padding: 10px;
}
.HomeContainer {
	display: flex; 
	width: 98%;margin: 0 auto;
}
.HomeTexto1 {
    /*background-color: silver;
	border: 2px solid white;*/
	/*border-right: 2px solid red; */
	padding: 2px;
}
.HomeTexto2 {
	/*background: #eeeeee;
	border: 2px solid white;*/
	height:100%;
	font-family: arial;
	/*color: blue;*/
	padding: 2px;
	
}

/* Estilos do rodapé */
footer {
	background-color: #BBBBBB;
	color: rgb(255, 255, 255);
	display: flex;
	justify-content: space-between;
	padding: 16px;
}

/* media queries */
@media screen and (max-width: 768px) {

	/* cabecalho */
	header {
		/* height: 600px;*/
		/* height: 60vh;  */
		display: block;
		justify-content: center;
		/*text-align: center;*/
	}

	
	/* nav */
	nav {
		/*flex-direction: row; */
		align-items: center;
		display: block;
		/*flex-direction: column; */
		/*justify-content: space-around;*/
		padding: 2px;
		height: auto;
		text-align: center;
	}
	nav a {
		/*flex-direction: row;*/
		align-items: center;
		width: 100%;
		display: block;
	}
	nav ul {
		/*flex-direction: row;*/
		display: block;
		text-align: center;
		width: 100%;
	}
	
}