*{
    margin: 0;
    padding: 0;
}
a{
    text-decoration: none;
}
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-transform: uppercase;
    position: relative;
}
kbd > button{
    position: absolute;
    bottom: 0;
    right: 0;
    display: none;
}
kbd:hover > button{
    display: inline-block;
}

main{
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
main > .wrapper{
    background:rgba(255,255,255,0.2);
}
#zhangsan{
    display: inline-block;
}
#zhangsan > div:nth-child(2){
    margin-left: -22px;
}
#zhangsan > div:nth-child(3){
    margin-left: -80px;
}
.key{
    width: 50px;
    height: 40px;
    background: linear-gradient(to bottom, #292929 0%,#111111 100%);
    border: 1px solid #373737;
    border: none;
    color: #c5c5c5;
    box-shadow: 0 0 0 1px #1A1B1C, 0 0 0 2px #1F2020,0 3px 0 2px #080808;
    border-radius: 6px;
    font-size: 16px;
    font-family: Helvetica;
    position: relative;
}
.row{
    margin: 20px;
}
.row .key{
    margin: 0 10px;
}
.key img{
    width: 12px;
    height: 12px;
    position: absolute;
    left: 4px;
    bottom: 2px;
}
.key .text{
    position: absolute;
    left: 4px;
    top: 2px;
}
.key > button{
   background: #ddd;
   font-size: 12px;
   border-radius: 2px; 
   outline: none;
}
