/* Elimina márgenes del navegador */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html,
body{
    width:100%;
    height:100%;
}

/* Fondo */
body{
    background-image:url("../img/fondo.png");
    background-repeat:no-repeat;
    background-position:center center;
    background-size:cover;
    background-attachment:fixed;

    display:flex;
    justify-content:center;
    align-items:center;
}

/* Mensaje */
.mensaje{
    color:#FFFFFF;
    font-family:Tahoma, Arial, sans-serif;
    font-size:14px;
    text-align:center;
}