#teclado {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.teclas button{
    width: 30px;
    height: 30px;
    margin-left: 5px;
    margin-bottom: 8px;
    cursor: pointer;
    box-shadow: 0px 2px 2px dimgray;
    border-radius: 5px;
    border: 1px solid dimgray;
    font-weight: bold;
}

.teclas button:hover {
    transform: scale(1.2);
}

.teclas button:disabled{
    cursor: not-allowed;
}

.LetraPressionada{
    background-color: #000000;
    color: #fff;
}