* {
  padding: 0;
  margin: 0;
}

body {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 50px;
}
h1 {
  width: 100%;
  text-align: center;
}

.keyboard {
  display: flex;
  flex-wrap: wrap;
  height: 250px;
  width: 90%;
  margin: 10px 20px 0px 20px;
}
.keyboard-panel {
  background-color: rgb(56, 52, 52);
  width: 100%;
  height: 50px;
}
.keyboard-keys {
  display: flex;
  gap: 2px;
  width: 100%;
  height: 200px;
  justify-content: center;
  background-color: #222222;
  padding: 0 10px;
}
.key-container {
  position: relative;
}
.key {
  height: 100%;
  width: 60px;
}
.key:hover {
  box-shadow: inset -5px -2px rgba(0, 0, 0, 0.253);
}
.white {
  background-color: white;
}
.white:hover {
  background-color: #fff7f7;
}
.black {
  position: absolute;
  right: -15px;
  top: 0px;
  height: 66%;
  width: 30px;
  z-index: 1;
  background-color: black;
}
.black:hover {
  background-color: rgb(37, 37, 37);
}
