* {
    margin: 0;
    padding: 0;
    color: darkgrey;
    font-family: Arial, Helvetica, sans-serif;
}

html, body {
    height: 100%; /*Para que a imagem ocupe toda tela.*/
}
body {
    background: linear-gradient(rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.6)), /*Define a opacidade do topo e de baixo.*/
    url(../images/imgBackGround.jpg) /*Define a imagen que será usada*/;
    background-size: cover; /*Preenche toda tela.*/
    background-position: center; /*Centraliza a imagem.*/
    background-repeat: no-repeat; /*Não repete a imagem.*/
}

.heading h1 {
    padding: 10px;
    text-align: center;
    font-size: 25px;
}