html, 
body {
    width: 100%;
    height: 100%;
}

body {
    font-size: .9rem;
    background: #D9D0C8 url(../img/fondo.png) no-repeat 120% 82%
}

#logo {
    max-width: 300px;
}

.texto-grande {
    font-size: 2rem;
    line-height: 2.5rem;
}

#pie {
    position: fixed;
    bottom: 0;
    width: 100%;
    color: white;
    background: #7B6756;
    padding: 40px 0;
}


@media (max-width: 992px) { 
    body {
        font-size: .9rem;
        background: #D9D0C8 url(../img/fondo.png) no-repeat -50% 100%;
    } 
    #logo {
        max-width: 200px;
    }
    .texto-grande {
        font-size: 1rem;
        line-height: 1.5rem;
    }
    #pie {
        padding: 10px 0;
    }
    
}