* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
}

#outer {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  background: #d4d3d3;
  height: 100vh;
  flex-direction: column;
}
#outer h1 {
  padding: 2rem;
  font-size: 2rem;
}
#outer .div1 {
  height: 20%;
  width: 91.5%;
  background-color: rgb(12, 12, 12);
  color: white;
  display: flex;
  justify-content: space-between;
}
#outer .div1 .box1 {
  background-color: rgb(102, 71, 211);
  height: 100%;
  width: 10%;
  color: rgba(248, 219, 1, 0.995);
  padding: 2rem;
  font-size: 4rem;
  text-align: center;
}
#outer .div1 .box1 button {
  cursor: pointer;
  background-color: transparent;
}
#outer .div1 .box1 button i {
  font-size: 4rem;
  text-align: center;
}
#outer .div1 .box2 {
  background-color: rgb(24, 24, 24);
  height: 100%;
  width: 100%;
  color: white;
  padding: 4px;
}
#outer .div2 {
  display: flex;
}
#outer .div2 .key-group {
  position: relative;
  margin: 1px 1px;
}
#outer .div2 .key-group .white {
  width: 35px;
  height: 250px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 0 0 12px 12px;
  text-align: center;
  line-height: 250px;
  font-weight: bold;
  font-size: 18px;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
#outer .div2 .key-group .white > h5 {
  position: absolute;
  bottom: -30%;
  left: 40%;
}
#outer .div2 .key-group .white:hover {
  background: #f0f0f0;
}
#outer .div2 .key-group .black {
  width: 25px;
  height: 150px;
  background: #000;
  color: #fff;
  border-radius: 0 0 12px 12px;
  position: absolute;
  top: 0;
  left: 24px;
  z-index: 2;
  text-align: center;
  line-height: 150px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}
#outer .div2 .key-group .black:hover {
  background: #333;
}/*# sourceMappingURL=styles.css.map */