/* Imagem de fundo com overlay em preto*/
html {	
	background-color: #000;
}


body {
	width: 100%;
	height: 100%;
	margin: 0 auto;
	
}


h1 {
	font-size: 50px;
	text-align: center;
	font-family: inherit;
}

h2 {
	font-size: 30px;
	text-align: center;
	font-family: inherit;
	color: #fff;
}

/*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;
		width: 40%;
}


/*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;
        color: #fff;
}

@media (max-width: 767px) {
    .pfooter{
        font-size: 10px;
	}
}