html {
    width: 100%;
    height: 100%;
}
body {
    width: 100%;
    height: 100%;
    background-color: black;
}
#contenedor {
    height: 100%;
}
.table {
    height: 100%;
    display: table;
}
.table .table-cell {
    display: table-cell;
    vertical-align: middle;
}
.table .table-cell span {
    text-align: center;
}
#menu, #home, #pie {
    display: none;
}

@media all and (min-width: 960px) and (min-height: 600px) {
    #top #idiomas {
        top: 150px;
        right: 25px;
    }
}
@media all and (max-width: 959px), all and (max-height: 599px) {
    #top #idiomas {
        top: 10px;
        right: 10px;
    }
}
@media all and (min-width: 700px) {
    body {
        background-image: url('../../images/intro/fondo.jpg');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center center;
    }
    .table {
        width: 55%;
        margin-left: 45%;
    }
    .table .table-cell span {
        padding-bottom: 25%;
        display: inline-block;
    }
}
@media all and (max-width: 699px) {
    .table {
        width: 100%;
    }
    .table .table-cell span {
        display: block;
    }
}