html, body { 
  background: url("../imgs/bkg.jpg") no-repeat center bottom fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  text-align: center;
  min-height: 100%;
}

.index {
    position: relative;
    text-align: center;

}

.plenacer {
    vertical-align: middle;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    margin-left: auto;
    margin-right: auto;
    max-width: 440px;
    padding-left: 15px;
    padding-right: 10px;
    padding-bottom: 100px;
    text-align: center;
}

.logo{
    display: inline-block;
    margin-right: 10px;
    padding-top: 8px;
}

.line {
    display: inline-block;
}

.plenacer p {
	color: #ffffff;
	font-family: 'Source Sans Pro', sans-serif;
    font-weight: 500;
	letter-spacing: 2px;
    padding-top: 18px;
    display: inline-block;
}



/* Responsive 550*/
@media screen and (max-width:550px) {
    html, body {
        background-size: auto !important;
        -webkit-background-size: auto !important;
      -moz-background-size: auto !important;
      -o-background-size: auto !important;
    }

    .logo {
        margin-bottom: 30px;
        clear: both;
        text-align: center;
    }
	.line {
        display: none;
    }
    .plenacer p {
        display: block;
        margin-bottom: 50px;
    }
}


