*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
/*
body{
    font-family: sans-serif;
}
*/
#ip{
  min-width: 400px;
  max-width: 900px;
  height: 80px;
  min-height: 30px;
  border-radius: 12px;
  box-shadow: -3px -3px 5px rgb(63, 63, 63) , 3px 3px 5px black;
  text-align: center;
  color: black;
  letter-spacing: 1px;
  position: absolute;
  top: 165px;
  left: 50%;
  margin: -20px auto;
  transform:translateX(-50%) ;
  font-size: 24px;
  
  text-transform: uppercase;
}
.keybord{
  box-shadow: -3px -3px 5px rgb(63, 63, 63) , 3px 3px 5px black;
  width: 680px;
  margin:200px auto 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding:20px 20px;
  border-radius: 10px;
}
.rowx{
  margin:5px ;
  user-select: none;
}
button{
  width: 50px;
  height: 50px;
  font-weight: bold;
  margin: 0 4px;
  border: none;
  background-color: orange;
  color:black;
  box-shadow: -2px -2px 4px rgb(63, 63, 63) , 2px 2px 4px black;
  border-radius: 5px;
  cursor: pointer;
}
.rowx4 , .backspace , .space{
  display: flex;
  align-items: center;
  justify-content: center;
  
}

.keybord .backspace , .space{
  color: black;
  font-weight: bold;
  cursor: pointer;
  background-color: orange;
  /* user-select: none; */
}
.backspace , .space{
  border-radius: 5px;
  box-shadow: -2px -2px 4px rgb(63, 63, 63) , 2px 2px 4px black;
}
.keybord .space{
  width: 300px;
  height: 50px;
  
}
.keybord .backspace {
  width: 100px;
  height: 50px;
  margin-left: 15px;
  
}
.keybord .activex{
  box-shadow:inset -2px -2px 4px rgb(63, 63, 63) ,inset 2px 2px 4px black;
  color: yellow;
}