#wrapper {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif !important; 
    -webkit-font-smoothing: antialiased;
}

#contentWrapper {
    width: inherit;
    height: inherit;
    display: table-cell;
    text-align: center; 
    vertical-align: middle;
    position: fixed; 
    z-index:-1; 
    top: 0px;
    left:0; 
}

#contentWrapper p.text{
    position:absolute;
    display:none;
    width:100%;
    z-index:-1;
}

.text {
    /* font-weight: bold; */
    margin: 0px !important;
    width: inherit;
    display: table-cell;
    text-align: center; 
    vertical-align: middle;
    color: rgba(238, 238, 238, 0.5);
    font-size: 2em;
    /*text-shadow: 1px 1px 0 #000, 1px 1px 0 #000;*/
}

.pulse {
    animation-name: pulse_animation;
    animation-duration: 3000ms;
    transform-origin:50% 5%;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes pulse_animation {
    0% { transform: scale(1); }
    30% { transform: scale(1); }
    40% { transform: scale(1.08); }
    50% { transform: scale(1); }
    60% { transform: scale(1); }
    70% { transform: scale(1.05); }
    80% { transform: scale(1); }
    100% { transform: scale(1); }
}
