#pie_pagina{
    position: fixed;
    width: 100%;
    padding-top: 110px;
    bottom: 0;
    height: 105px;
    background-image: url('../imgs/fondo_1.png');
	background-size: contain;
}
    .texto_pie_pagina{
        position: fixed;
        bottom: 0;
        width: 100%;
        color: white;
        text-align: center;
        font-size: 1em;
    }
        .texto_pie_pagina:hover{
            cursor: pointer;
        }

/* Media Queries */
@media screen and (max-width: 600px) {
	#pie_pagina{
        padding-top: 100px;
    	background-size: cover;
    }
}