
*{
    margin: 0;
    padding: 0;
}

body {
    background: grey url(../img/wall.jpg) no-repeat center center;
    background-size: cover;
}

kbd {
    /* border: 1px solid red; */
    width: 4em;
    height: 4em;
    display: inline-block;
    text-align: center;
    /* vertical-align: top; */
    position: relative;
}

kbd  .editBtn {
    position: absolute;
    right: 0;
    bottom: 0;
    display: none;
    background-color: orange;
    color: white;
    border-radius: 4px;
}

kbd:hover > button{
    display: inline-block;
}

#main > div:nth-child(2){
    margin-left: -22px;
}
#main > div:nth-child(3){
    margin-left: -80px;
}

#main {
    margin-top: 30px;
}
main {
    text-align: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.key {
    width: 50px; 
    height: 40px;
    background: linear-gradient(to bottom, #292929 2%,#111111 100%);
    color: #c5c5c5;
    border: 1px solid #373737;
    border-radius: 4px;
    box-shadow: 0 0 0 1px #1A1B1C,0 0 0 2px #1F2020,0 3px 0 2px #080808;
    font-size: 16px;
    font-family: Helvetica;
    position: relative;
}

.key .text{position: absolute; left: 4px; top: 2px; }

.row {
    margin: 20px;
}

.row .key {
    margin: 0 10px;
}

.key img{width: 16px; height: 16px; position: absolute; left: 4px; bottom: 2px;}

.wrapper {
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
}

.deleteBtn{
    position: absolute;
    right: 0;
    top: 0;
    display: none;
    background-color: orange;
    color: white;
    border-radius: 4px;
}