
.wrapper {
  margin: 0 auto;
  width: 780px;
  height: 800px;
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-direction: column;
}
.title{
  text-align: center;
  font-size: 20px;
}
.textarea {
  width: 100%;
  height: 200px;
  font-size: 26px;
  letter-spacing: 2px;
}
.keyboard__wrapper {
  margin-top: 10px; 
  display: flex;
  width: 780px;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 5px;
  background-color:grey;
  padding: 10px;
}
.key {
  width: 40px;
  height: 40px;
  background-color: 	#FFEFD5;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  border: 2px solid #000000;
  color: 	#D2691E;
  font-size: 15px;
  letter-spacing: 2;
  user-select: none;
  transition: 0.1s;
}
.Backspace,
.CapsLock,
.Enter,
.ShiftLeft,
.ShiftRight {
  width: 100px;
}
.Tab {
  width: 60px;
}
.Space {
  width: 350px
}
.key:hover {
  background-color: 	#F0E68C;
}
.value {
  width: 100%;
  height:100%;
  display: flex;
  vertical-align: middle;
  text-align: center;
  align-items: center;
  justify-content: center;
}
.hidden-key {
  display: none;
}
.key.active {
  transform: translateY(2px);
  background-color:	#00BFFF;
}
.key:active {
  transform: translateY(2px);
  background-color:	#00BFFF;
}
.lang-info {
  text-align: center;
  font-size: 20px;
}
