
body{
    /* background-image: url(imagens/bg.svg), url(imagens/bg_fixo.svg);
    background-repeat: repeat-y, repeat-x;
    background-position: center, top;*/
    /*  pode ser usado n imagens como bg, e cada bg pode ter sua configuração. a ordem da estilização é daddo pe virgula */

    background-image: url(imagens/bg_fixo.svg), url(imagens/bg.svg);
    background-repeat: no-repeat, repeat;
    background-position: right bottom, center;
    background-attachment: fixed;
    /* fica fixo na tela */
    background-size: auto, auto;
    /* auto: padrão */
    /* cover: larg img = larg dispositvo, */
}

h1{
    background-image: linear-gradient(90deg, deepskyblue, blue);
    color: white;
}
img{
   width: 100%;
}