/* Imagem de fundo com overlay em preto*/
html {
	background: url(img/fundo.jpeg) no-repeat center center fixed rgba(0, 0, 0, 0.7);
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-blend-mode: multiply;
	font-size: 18px;
	font-family: "Raleway", sans-serif;
	color: #fff;	
	/*background-color: #fff;*/
}


body {
	width: 100%;
	height: 100%;
	margin: 0 auto;
	
}


h1 {
	font-size: 50px;
	text-align: center;
	font-family: inherit;
}

/*Ajustedo tamanho da tela para responsividade em telas menores*/
@media (max-width: 767px) {
    h1{
        font-size: 32px;
	}
}


a {
	color: #fff;
}


/*com width em 100% a imagem fica responsiva, se ajustando ao tamanho das telas */
img {
		display: block;
		margin: 0 auto;
		
}


/*conteúdo no meio usando flexbox*/
.flex-box {
	display: flex;
	align-items: center;
	justify-content: center;
    text-align: center;
    min-height: 100vh;
}

/*Footer fixo na base da página*/
.footer {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
}	

/*Alinhamento e tamanho do texto do parágrafo no footer*/
.pfooter {
	font-size: 12px;
	text-align: center;
}

@media (max-width: 767px) {
    .pfooter{
        font-size: 10px;
	}
}