* {
  box-sizing: border-box;
}

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

  height: 100dvh;
  width: 100dvw;
  margin: 0;
}

.game {
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.game__top {
  display: flex;
  gap: 4px;
  justify-content: space-between;
}

.feedback {
  font-size: 0.8em;
}

.game__block-secuence {
  height: 24px;
}

.keyboard {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}

.keyboard * {
  display: flex;
  flex-direction: row;
  gap: inherit;
}

.keyboard button {
  width: 28px;
  height: 28px;

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

.keybaord__key--pressing {
  background-color: rgb(158, 158, 255);
}