/* Remove margens e espaçamentos padrão */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Faz o body ocupar toda a tela */
html, body {
    height: 100%;
    width: 100%;
}

/* Define o fundo responsivo e centralizado */
body {
    background-image: url('../img/background.png'); /* caminho da imagem */
    background-position: center center;  /* centraliza o desenho */
    background-repeat: no-repeat;        /* não repete */
    background-size: cover;              /* cobre toda a tela */
    background-attachment: fixed;        /* mantém fixo ao rolar (opcional) */
}
