@charset "utf-8";
/* CSS Document */

* {
    padding: 0;
    margin: 0;
}
body{}
.fundo {
    width: 100%;
    display: block;
}
.logo {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    max-width: 80vw;
    max-height: 80vh;
    background-color: transparent;
    width: auto;
    height: auto;
    display: block;
}

/* < xs */
@media (max-width: 991px) {
	body{}
	.fundo {}
	.logo {}
}
/* md > */
@media (min-width: 992px) {
	body{}
	.fundo {}
	.logo {}
}