body {
    background-image: url(img/fundo.png);

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 100vh;
    overflow: hidden;
}

.texto-centro {
    text-align: center;
}

h2 {
    color: #fff;
}
a,
a:hover {
    text-decoration: none;
    color: #fff;
}

ul {
    list-style: none;
    padding: 0;
    font-size: 20px;
}

.rodape {
    bottom: 20px;
    position: absolute;
    /* margin: 0 auto 20px; */
    left: 0;
    right: 0;
}

@media screen and (max-width: 767px) {
    body {
        background-position: center;
        background-size: cover;
        overflow: unset;
        background-attachment: fixed;
    }
    .rodape {
        /* bottom: 20px; */
        position: relative;
        margin: 30px auto 30px;
        /* left: 0; */
        /* right: 0; */
    }
}
