I achieved it with the following codes:
HTML:
<div class="center-main">
<div class="center-in"><img class="centered-logo" src="images/logo.png" style="margin-top:-70px;" /></div>
</div>
CSS:
.center-main {
width:500px;
height: 250px;
display: table;
position: relative;
overflow: hidden;
text-align:center;
margin:0 auto;
}
.center-main .center-in {
position: fixed;
top: 50%;
left: 50%;
display: table-cell;
vertical-align: middle;
}
.center-main .center-in .centered-logo {
max-width:300px;
max-height:150px;
position: relative;
top: -50%;
left:-50%;
}