body
{
	background-color: #ffffff;
	margin:0em;
	padding:0em;
	overflow:hidden;
    
	webkit-user-select:none;
}
#game{
    width: 1024px;
    height: 768px;
    margin: 0px auto;
    position: relative;
}
#volver{
    position: relative;
    top: 10px;
    left: 19px;
}


[draggable] {
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  /* Required to make elements draggable in old WebKit */
  -khtml-user-drag: element;
  -webkit-user-drag: element;
}

/*-----------------------------------            Piezas         */


#pieza1{
    position: absolute;
    top:101px;
    left:789px;
    width: 95px;
    height: 95px;
    background-image: url(imagenes/pelota.png);
    background-size: 95px auto;
}
#pieza2{
    position: absolute;
    top:272px;
    left:799px;
    width: 108px;
    height: 76px;
    background-image: url(imagenes/coche.png);
    background-size: 108px auto;
}
#pieza3{
    position: absolute;
    top:437px;
    left:779px;
    width: 150px;
    height: 93px;
    background-image: url(imagenes/ficha-camion-recortado.png);
    background-size: 150px auto;
}
#pieza4{
    position: absolute;
    top:570px;
    left:799px;
    width: 100px;
    height: 120px;
    background-image: url(imagenes/ficha-cuento.png);
    background-size: 100px auto;
}

/*-----------------------------------            Hueco         */


#hueco1{
    position: absolute;
    top:379px;
    left:286px;
    width: 95px;
    height: 89px;
    background-color: transparent;
}

#fin{
    position: fixed;
    top:0px;
    /*background-color: rgba(0, 0, 0, 0.38);*/
    background-image: url(imagenes/imagen_final.png);
    background-position: center;
    background-repeat: no-repeat;
    width: 1024px;
    height: 768px;
    display: none;
    z-index: 900;
}
#fin img{
    margin-top: 50%;
    margin-left: 20%;
    margin-right: 20%;
}

#saludo{
    position: fixed;
    top:0px;
    /*background-color: rgba(0, 0, 0, 0.38);*/
    width: 1024px;
    height: 768px;
    text-align: center;
    font-size: 30px;
    color: #000;
    font-family: sans-serif;
}

#cuadro_saludo{
    margin: 10% auto;
    padding: 50px;
    background-color: #fff;
    width: 500px;
    height: 250px;
    -webkit-border-radius: 20px 20px 20px 20px;
    border-radius: 20px 20px 20px 20px;
    
    -webkit-box-shadow: 0 0 5px 3px #5C5C5C;
    box-shadow: 0 0 5px 3px #5C5C5C;
}
