.main {
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;

}

.keySpace {
  height: 100%;
  width: 15%;
  padding: 1vh;
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  justify-content: center;

}

.frame {
  background-color: grey;
  height: 80vh;
  min-width: 80vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.line {
  min-height: 5%;
  min-width: 100%;
  margin: 0.25vh 0;
  display: flex;
  flex-direction: row;

}

.block {
  height: 100%;
  min-width: 5%;
}

.key {
  height: 5vh;
  width: 9vh;
  background-color: grey;
  margin: 2vh;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.key:hover {
  cursor: pointer;
}

.keyCol {
  height: 4vh;
  width: 4vh;
}
