* {

    margin: 0;
}

.container {
    background-image: url('./img/background.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100dvw;
    height: 100dvh;
    position: relative;
    align-content: center;
    text-align-last: center;
    overflow: hidden;

    img {
        width: 100%;
    }
}

@media (max-width:640px) {
    .imagem-longa {
        display: none;
    }

    .img-mobile {
        display: block;
    }

    .container {
        background-image: url('./img/FUNDO.png');
    }
}

@media (min-width:640px) {
    .imagem-longa {
        display: block;
    }

    .img-mobile {
        display: none;
    }

}