html, body{

    width:100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-size: 1em;
    background: #8627e7 url('../img/fondo.png') no-repeat center center;
    background-size: 100% 100%;
    overflow: hidden;

}

a, div, span, p{
    user-select: none;
}

#the_content{

    width:100%;
    height: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;

}

#theGame{
    position: absolute;
    left:50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 500px;
    background: url('../img/teclado.png') no-repeat center center;
    background-size: 100%;
    margin-left: 85px;
}

#logo{
    position: absolute;
    right: 50px;
    bottom: 50px;
    transform-origin: right;
    width: 600px;
    text-align: right;
}

.feliz{
    max-width: 400px;
    margin-bottom: -7px;
    margin-right: 20px;
}

.logo{
    max-width: 90px;
}

.tecla{
    position: absolute;
    cursor: pointer;
}

.back{
    background: url('../img/teclado-base.png') no-repeat center center;
    background-size: 100%;
    width: 801px;
    height: 399px;
    top: 50px;
    left: 0px;
    position: absolute;
}

#tecla1{
    background: url('../img/tecla1.png') no-repeat center center;
    background-size: 100%;
    width: 90px;
    height: 90px;
    top: 73px;
    left: 66px;
}

#tecla2{
    background: url('../img/tecla2.png') no-repeat center center;
    background-size: 100%;
    width: 178px;
    height: 90px;
    top: 73px;
    left: 159px;
}

#tecla3{
    background: url('../img/tecla3.png') no-repeat center center;
    background-size: 100%;
    width: 90px;
    height: 90px;
    top: 73px;
    left: 339px;
}

#tecla4{
    background: url('../img/tecla4.png') no-repeat center center;
    background-size: 100%;
    width: 90px;
    height: 90px;
    top: 164px;
    left: 67px;
}

#tecla5{
    background: url('../img/tecla5.png') no-repeat center center;
    background-size: 100%;
    width: 131px;
    height: 90px;
    top: 164px;
    left: 158px;
}

#tecla6{
    background: url('../img/tecla6.png') no-repeat center center;
    background-size: 100%;
    width: 90px;
    height: 90px;
    top: 164px;
    left: 290px;
}

#tecla7{
    background: url('../img/tecla7.png') no-repeat center center;
    background-size: 100%;
    width: 90px;
    height: 90px;
    top: 164px;
    left: 382px;
    z-index: 10;
}

#tecla8{
    background: url('../img/tecla8.png') no-repeat center center;
    background-size: 100%;
    width: 127px;
    height: 87px;
    top: 257px;
    left: 67px;
}

#tecla9{
    background: url('../img/tecla9.png') no-repeat center center;
    background-size: 100%;
    width: 238px;
    height: 87px;
    top: 257px;
    left: 197px;
}

#tecla10{
    background: url('../img/tecla10.png') no-repeat center center;
    background-size: 100%;
    width: 127px;
    height: 87px;
    top: 257px;
    left: 437px;
}

#teclaDalle{
    background: url('../img/Dalle.png') no-repeat center center;
    background-size: 100%;
    width: 131px;
    height: 181px;
    top: 73px;
    left: 432px;
}

.presionato{
    animation-name: presiona;
  animation-duration: .3s;
}

@keyframes presiona {
    from {margin-left: 3px;
        margin-top: 3px;}
    to {margin-left: 0px;
        margin-top: 0px;}
  }

@media (max-width: 600px) {
    #theGame{
        transform: translate(-50%, -50%) scale(.7);
        margin-left: 60px;
    }

    #logo{
        transform: scale(.7);
        right: 40px;
        bottom: 10px;
    }
}

@media (max-width: 420px) {
    #theGame{
        transform: translate(-50%, -50%) scale(.6);
        margin-left: 50px;
    }

    #logo{
        transform: scale(.5);
    }
}