I found a solution by adding an inner div into each div.Key and using display: table; and display: table-cell; This does what I need. Here is the code:
.Layout {
width: 1024px; /* TEST */
height: 480px; /* TEST */
}
.Key {
text-align: center;
display: table;
width: 100%;
height: 100%;
}
.Key > div {
display: table-cell;
vertical-align: middle;
}
And :